No Description
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.

main.yml 475B

1234567891011121314
  1. secret_root: '{{ inventory_dir | realpath }}'
  2. secret_name: 'secret'
  3. secret: '{{ secret_root + "/" + secret_name }}'
  4. irc_admin_username: "{{ main_user_name }}"
  5. irc_admin_password: "{{ lookup('password', secret + '/' + 'irc_admin_password length=32') }}"
  6. irc_nick: "{{ main_user_name }}"
  7. irc_altnick: "{{ irc_nick }}_"
  8. irc_ident: "{{ main_user_name }}"
  9. irc_realname: "{{ main_user_name }}"
  10. irc_quitmsg: "Bye folks"
  11. irc_timezone: "{{ common_timezone | default('Etc/UTC') }}"