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
2021-05-27 16:18:04 +02:00

28 lines
1.1 KiB
YAML

---
# should we install weechat?
weechat__install: true
# autostart weechat via systemd in a tmux session?
weechat__autostart: false
# should we install official weechat plugins
weechat__install_plugins: false
# custom weechat config (requires some manual interaction for long-term usage)
weechat__use_custom_config: false
# user to install and use weechat
weechat__user: "{{ ansible_user_id }}"
# where is our home direcotory for weechat
weechat__home_directory: "{{ ansible_env.HOME | default('/home/{{ weechat__user }}') }}"
# plugins we want
weechat__plugins: []
# weechat gpg key for debian/ubuntu repo
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'
# version check for this role? (true is recomended)
submodules_versioncheck: false