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:
parent
c7154c9552
commit
91d5f6f0f7
2 changed files with 5 additions and 5 deletions
|
@ -3,13 +3,13 @@ weechat:
|
||||||
# should we install weechat?
|
# should we install weechat?
|
||||||
install: true
|
install: true
|
||||||
# autostart weechat via systemd in a tmux session?
|
# autostart weechat via systemd in a tmux session?
|
||||||
autostart: true
|
autostart: false
|
||||||
# should we configure weechat
|
# should we configure weechat
|
||||||
configure: false
|
configure: false
|
||||||
# user to install and use weechat
|
# user to install and use weechat
|
||||||
user: "{{ ansible_user_id }}"
|
user: "{{ ansible_user_id }}"
|
||||||
# where is our home direcotory for weechat
|
# 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 we want
|
||||||
plugins: []
|
plugins: []
|
||||||
# weechat gpg key for debian/ubuntu repo
|
# weechat gpg key for debian/ubuntu repo
|
||||||
|
|
|
@ -9,15 +9,15 @@ weechat_plugin_languages:
|
||||||
lua: lua
|
lua: lua
|
||||||
|
|
||||||
# version management
|
# 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'
|
playbook_version_path: 'role-weechat_roles-ansible_github.com.version'
|
||||||
|
|
||||||
# default values
|
# default values
|
||||||
_weechat:
|
_weechat:
|
||||||
install: true
|
install: true
|
||||||
autostart: true
|
autostart: false
|
||||||
configure: false
|
configure: false
|
||||||
user: "{{ ansible_user_id }}"
|
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: []
|
plugins: []
|
||||||
gpg_id: '11E9DE8848F2B65222AA75B8D1820DB22A11534E'
|
gpg_id: '11E9DE8848F2B65222AA75B8D1820DB22A11534E'
|
||||||
|
|
Loading…
Reference in a new issue