1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_weechat.git synced 2024-08-16 13:09:48 +02:00

improve default values (install only except you read the docs)

This commit is contained in:
L3D 2020-03-11 20:33:00 +01:00 committed by L3D
parent c7154c9552
commit 91d5f6f0f7
No known key found for this signature in database
GPG key ID: 5215C3441797AB2B
2 changed files with 5 additions and 5 deletions

View file

@ -3,13 +3,13 @@ weechat:
# should we install weechat?
install: true
# autostart weechat via systemd in a tmux session?
autostart: true
autostart: false
# should we configure weechat
configure: false
# user to install and use weechat
user: "{{ ansible_user_id }}"
# where is our home direcotory for weechat
home_directory: "{{ ansible_env.HOME | default(/home/{{ weechat.user }}) }}/.weechat"
home_directory: "{{ ansible_env.HOME | default('/home/{{ weechat.user }}') }}/.weechat"
# plugins we want
plugins: []
# weechat gpg key for debian/ubuntu repo

View file

@ -9,15 +9,15 @@ weechat_plugin_languages:
lua: lua
# version management
playbook_version_number: 2052 # should be over ninethousand
playbook_version_number: 2053 # should be over ninethousand
playbook_version_path: 'role-weechat_roles-ansible_github.com.version'
# default values
_weechat:
install: true
autostart: true
autostart: false
configure: false
user: "{{ ansible_user_id }}"
home_directory: "{{ ansible_env.HOME | default(/home/{{ weechat.user }}) }}/.weechat"
home_directory: "{{ ansible_env.HOME | default('/home/{{ weechat.user }}') }}/.weechat"
plugins: []
gpg_id: '11E9DE8848F2B65222AA75B8D1820DB22A11534E'