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

29 lines
1.1 KiB
YAML
Raw Normal View History

---
2022-04-06 00:15:06 +02:00
# should we install weechat?
2021-05-27 16:18:04 +02:00
weechat__install: true
2022-04-06 00:15:06 +02:00
# autostart weechat via systemd in a tmux session?
2021-05-27 16:18:04 +02:00
weechat__autostart: false
2022-04-06 00:15:06 +02:00
# should we install official weechat plugins
2021-05-27 16:18:04 +02:00
weechat__install_plugins: false
2022-04-06 00:15:06 +02:00
# custom weechat config (requires some manual interaction for long-term usage)
2021-05-27 16:18:04 +02:00
weechat__use_custom_config: false
2022-04-06 00:15:06 +02:00
# user to install and use weechat
2021-05-27 16:18:04 +02:00
weechat__user: "{{ ansible_user_id }}"
2022-04-06 00:15:06 +02:00
# where is our home direcotory for weechat
2021-05-27 16:18:04 +02:00
weechat__home_directory: "{{ ansible_env.HOME | default('/home/{{ weechat__user }}') }}"
2022-04-06 00:15:06 +02:00
# plugins we want
2021-05-27 16:18:04 +02:00
weechat__plugins: []
2022-04-06 00:15:06 +02:00
# weechat gpg key for debian/ubuntu repo
2021-05-27 16:18:04 +02:00
weechat__gpg_id: '11E9DE8848F2B65222AA75B8D1820DB22A11534E'
# path to your custom weechat config (with plugins) git repo
# ( eg. git@github.com:<your_name>/<your_weechat_config_repo>.git )
weechat__custom_private_repo: false
# generate ssh key pair (if not available)
weechat__custom_gen_ssh_key_pair: true
# the tag, commit or branch we should check out
weechat__custom_version: 'main'
2020-03-09 17:51:33 +01:00
# version check for this role? (true is recomended)
submodules_versioncheck: false