You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011121314 |
- secret_root: '{{ inventory_dir | realpath }}'
- secret_name: 'secret'
- secret: '{{ secret_root + "/" + secret_name }}'
-
- irc_admin_username: "{{ main_user_name }}"
- irc_admin_password: "{{ lookup('password', secret + '/' + 'irc_admin_password length=32') }}"
-
- irc_nick: "{{ main_user_name }}"
- irc_altnick: "{{ irc_nick }}_"
- irc_ident: "{{ main_user_name }}"
- irc_realname: "{{ main_user_name }}"
- irc_quitmsg: "Bye folks"
-
- irc_timezone: "{{ common_timezone | default('Etc/UTC') }}"
|