Make ansible-lint happy (no functional changes, only codestyle)
This commit is contained in:
parent
fa5165b62b
commit
1039d89ce3
10 changed files with 64 additions and 32 deletions
|
@ -1,16 +1,19 @@
|
|||
---
|
||||
|
||||
- ansible.builtin.import_tasks: virtual.yml
|
||||
- name: create virtual user/group
|
||||
ansible.builtin.import_tasks: virtual.yml
|
||||
tags:
|
||||
- "role::dovecot"
|
||||
- "role::dovecot:virtual"
|
||||
|
||||
- ansible.builtin.import_tasks: install.yml
|
||||
- name: install dovecot
|
||||
ansible.builtin.import_tasks: install.yml
|
||||
tags:
|
||||
- "role::dovecot"
|
||||
- "role::dovecot:install"
|
||||
|
||||
- ansible.builtin.import_tasks: config.yml
|
||||
- name: configure dovecot
|
||||
ansible.builtin.import_tasks: config.yml
|
||||
tags:
|
||||
- "role::dovecot"
|
||||
- "role::dovecot:config"
|
||||
|
|
|
@ -1,11 +1,13 @@
|
|||
---
|
||||
|
||||
- ansible.builtin.import_tasks: install.yml
|
||||
- name: install easywks
|
||||
ansible.builtin.import_tasks: install.yml
|
||||
tags:
|
||||
- "role::easywks"
|
||||
- "role::easywks:install"
|
||||
|
||||
- ansible.builtin.import_tasks: config.yml
|
||||
- name: configure easywks
|
||||
ansible.builtin.import_tasks: config.yml
|
||||
tags:
|
||||
- "role::easywks"
|
||||
- "role::easywks:config"
|
||||
|
|
|
@ -1,25 +1,30 @@
|
|||
---
|
||||
|
||||
- ansible.builtin.import_tasks: install.yml # todo: wtf dependencies
|
||||
- name: install mailman3
|
||||
ansible.builtin.import_tasks: install.yml # todo: wtf dependencies
|
||||
tags:
|
||||
- "role::mailman"
|
||||
- "role::mailman:install"
|
||||
|
||||
- ansible.builtin.import_tasks: config.yml
|
||||
- name: configure mailman3
|
||||
ansible.builtin.import_tasks: config.yml
|
||||
tags:
|
||||
- "role::mailman"
|
||||
- "role::mailman:config"
|
||||
|
||||
- ansible.builtin.import_tasks: templates.yml
|
||||
- name: override mailman3-web django templates
|
||||
ansible.builtin.import_tasks: templates.yml
|
||||
tags:
|
||||
- "role::mailman"
|
||||
- "role::mailman:templates"
|
||||
|
||||
- ansible.builtin.import_tasks: bootstrap.yml
|
||||
- name: create mailman3 databases and admin users
|
||||
ansible.builtin.import_tasks: bootstrap.yml
|
||||
tags:
|
||||
- "role::mailman:bootstrap"
|
||||
- "never"
|
||||
|
||||
- ansible.builtin.import_tasks: privacy.yml
|
||||
- name: create hyperkitty cleanup cronjob
|
||||
ansible.builtin.import_tasks: privacy.yml
|
||||
tags:
|
||||
- "role::mailman:privacy"
|
||||
|
|
|
@ -1,11 +1,13 @@
|
|||
---
|
||||
|
||||
- ansible.builtin.import_tasks: install.yml
|
||||
- name: install multischleuder
|
||||
ansible.builtin.import_tasks: install.yml
|
||||
tags:
|
||||
- "role::multischleuder"
|
||||
- "role::multischleuder:install"
|
||||
|
||||
- ansible.builtin.import_tasks: config.yml
|
||||
- name: configure multischleuder
|
||||
ansible.builtin.import_tasks: config.yml
|
||||
tags:
|
||||
- "role::multischleuder"
|
||||
- "role::multischleuder:config"
|
||||
|
|
|
@ -1,11 +1,13 @@
|
|||
---
|
||||
|
||||
- ansible.builtin.import_tasks: install.yml
|
||||
- name: install opendkim
|
||||
ansible.builtin.import_tasks: install.yml
|
||||
tags:
|
||||
- "role::opendkim"
|
||||
- "role::opendkim:install"
|
||||
|
||||
- ansible.builtin.import_tasks: config.yml
|
||||
- name: configure opendkim
|
||||
ansible.builtin.import_tasks: config.yml
|
||||
tags:
|
||||
- "role::opendkim"
|
||||
- "role::opendkim:config"
|
||||
|
|
|
@ -1,23 +1,27 @@
|
|||
---
|
||||
|
||||
- ansible.builtin.import_tasks: setup.yml
|
||||
- name: create postfix virtual users/group
|
||||
ansible.builtin.import_tasks: setup.yml
|
||||
tags:
|
||||
- "role::postfix"
|
||||
- "role::postfix:install"
|
||||
- "role::postfix:config"
|
||||
- "role::postfix:tables"
|
||||
|
||||
- ansible.builtin.import_tasks: install.yml
|
||||
- name: install postfix
|
||||
ansible.builtin.import_tasks: install.yml
|
||||
tags:
|
||||
- "role::postfix"
|
||||
- "role::postfix:install"
|
||||
|
||||
- ansible.builtin.import_tasks: config.yml
|
||||
- name: configure postfix
|
||||
ansible.builtin.import_tasks: config.yml
|
||||
tags:
|
||||
- "role::postfix"
|
||||
- "role::postfix:config"
|
||||
|
||||
- ansible.builtin.import_tasks: tables.yml
|
||||
- name: render postfix lookup tables
|
||||
ansible.builtin.import_tasks: tables.yml
|
||||
tags:
|
||||
- "role::postfix"
|
||||
- "role::postfix:tables"
|
||||
|
|
|
@ -1,31 +1,37 @@
|
|||
---
|
||||
|
||||
- ansible.builtin.import_tasks: setup.yml
|
||||
- name: create virtual user/group
|
||||
ansible.builtin.import_tasks: setup.yml
|
||||
tags:
|
||||
- "role::postfixadmin"
|
||||
- "role::postfixadmin:dovecot"
|
||||
|
||||
- ansible.builtin.import_tasks: install.yml
|
||||
- name: install postfixadmin
|
||||
ansible.builtin.import_tasks: install.yml
|
||||
tags:
|
||||
- "role::postfixadmin"
|
||||
- "role::postfixadmin:install"
|
||||
|
||||
- ansible.builtin.import_tasks: config.yml
|
||||
- name: configure postfixadmin
|
||||
ansible.builtin.import_tasks: config.yml
|
||||
tags:
|
||||
- "role::postfixadmin"
|
||||
- "role::postfixadmin:config"
|
||||
|
||||
- ansible.builtin.import_tasks: bootstrap.yml
|
||||
- name: create postfixadmin database and admin users
|
||||
ansible.builtin.import_tasks: bootstrap.yml
|
||||
tags:
|
||||
- "role::postfixadmin:bootstrap"
|
||||
- "never"
|
||||
|
||||
- ansible.builtin.import_tasks: postfix.yml
|
||||
- name: hook postfix up to postfixadmin
|
||||
ansible.builtin.import_tasks: postfix.yml
|
||||
tags:
|
||||
- "role::postfixadmin"
|
||||
- "role::postfixadmin:postfix"
|
||||
|
||||
- ansible.builtin.import_tasks: dovecot.yml
|
||||
- name: hook dovecot up to postfixadmin
|
||||
ansible.builtin.import_tasks: dovecot.yml
|
||||
tags:
|
||||
- "role::postfixadmin"
|
||||
- "role::postfixadmin:dovecot"
|
||||
|
|
|
@ -1,11 +1,13 @@
|
|||
---
|
||||
|
||||
- ansible.builtin.import_tasks: install.yml
|
||||
- name: install postsrsd
|
||||
ansible.builtin.import_tasks: install.yml
|
||||
tags:
|
||||
- "role::postsrsd"
|
||||
- "role::postsrsd:install"
|
||||
|
||||
- ansible.builtin.import_tasks: config.yml
|
||||
- name: configure postsrsd
|
||||
ansible.builtin.import_tasks: config.yml
|
||||
tags:
|
||||
- "role::postsrsd"
|
||||
- "role::postsrsd:config"
|
||||
|
|
|
@ -1,22 +1,26 @@
|
|||
---
|
||||
|
||||
- ansible.builtin.import_tasks: install.yml
|
||||
- name: install schleuder
|
||||
ansible.builtin.import_tasks: install.yml
|
||||
tags:
|
||||
- "role::schleuder"
|
||||
- "role::schleuder:install"
|
||||
|
||||
- ansible.builtin.import_tasks: config.yml
|
||||
- name: configure schleuder
|
||||
ansible.builtin.import_tasks: config.yml
|
||||
tags:
|
||||
- "role::schleuder"
|
||||
- "role::schleuder:config"
|
||||
|
||||
- ansible.builtin.import_tasks: install_web.yml
|
||||
- name: install and configure schleuder-web
|
||||
ansible.builtin.import_tasks: install_web.yml
|
||||
when: schleuder_web_install
|
||||
tags:
|
||||
- "role::schleuder"
|
||||
- "role::schleuder:install_web"
|
||||
|
||||
- ansible.builtin.import_tasks: cli_apitokens.yml
|
||||
- name: create schleuder-api-daemon tokens for admin users
|
||||
ansible.builtin.import_tasks: cli_apitokens.yml
|
||||
tags:
|
||||
- "role::schleuder"
|
||||
- "role::schleuder:cli_apitokens"
|
||||
|
|
|
@ -1,11 +1,13 @@
|
|||
---
|
||||
|
||||
- ansible.builtin.import_tasks: install.yml
|
||||
- name: install spamassassin
|
||||
ansible.builtin.import_tasks: install.yml
|
||||
tags:
|
||||
- "role::spamassassin"
|
||||
- "role::spamassassin:install"
|
||||
|
||||
- ansible.builtin.import_tasks: config.yml
|
||||
- name: configure spamassassin
|
||||
ansible.builtin.import_tasks: config.yml
|
||||
tags:
|
||||
- "role::spamassassin"
|
||||
- "role::spamassassin:config"
|
||||
|
|
Loading…
Add table
Reference in a new issue