2021-08-13 10:05:57 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Create user account @janitor
|
|
|
|
command: |
|
2021-10-10 07:23:49 +02:00
|
|
|
/usr/local/bin/matrix-synapse-register-user janitor {{ awx_janitor_user_password | quote }} 1
|
2021-08-13 10:05:57 +02:00
|
|
|
register: cmd
|
2021-10-10 07:23:49 +02:00
|
|
|
when: not awx_janitor_user_created|bool
|
2021-08-13 10:05:57 +02:00
|
|
|
no_log: True
|
|
|
|
|
|
|
|
- name: Update AWX janitor user created variable
|
|
|
|
delegate_to: 127.0.0.1
|
|
|
|
lineinfile:
|
|
|
|
path: '/var/lib/awx/projects/clients/{{ member_id }}/{{ subscription_id }}/matrix_vars.yml'
|
|
|
|
regexp: "^#? *{{ item.key | regex_escape() }}:"
|
|
|
|
line: "{{ item.key }}: {{ item.value }}"
|
|
|
|
insertafter: 'AWX Settings'
|
|
|
|
with_dict:
|
2021-10-10 07:23:49 +02:00
|
|
|
'awx_janitor_user_created': 'true'
|
|
|
|
when: not awx_janitor_user_created|bool
|
2021-08-13 10:05:57 +02:00
|
|
|
|
|
|
|
- name: Create user account @dimension
|
|
|
|
command: |
|
2021-10-10 07:23:49 +02:00
|
|
|
/usr/local/bin/matrix-synapse-register-user dimension {{ awx_dimension_user_password | quote }} 0
|
2021-08-13 10:05:57 +02:00
|
|
|
register: cmd
|
2021-10-10 07:23:49 +02:00
|
|
|
when: not awx_dimension_user_created|bool
|
2021-08-13 10:05:57 +02:00
|
|
|
no_log: True
|
|
|
|
|
|
|
|
- name: Update AWX dimension user created variable
|
|
|
|
delegate_to: 127.0.0.1
|
|
|
|
lineinfile:
|
|
|
|
path: '/var/lib/awx/projects/clients/{{ member_id }}/{{ subscription_id }}/matrix_vars.yml'
|
|
|
|
regexp: "^#? *{{ item.key | regex_escape() }}:"
|
|
|
|
line: "{{ item.key }}: {{ item.value }}"
|
|
|
|
insertafter: 'AWX Settings'
|
|
|
|
with_dict:
|
2021-10-10 07:23:49 +02:00
|
|
|
'awx_dimension_user_created': 'true'
|
|
|
|
when: not awx_dimension_user_created|bool
|
2021-08-13 10:05:57 +02:00
|
|
|
|
|
|
|
- name: Create user account @mjolnir
|
|
|
|
command: |
|
2021-10-10 07:23:49 +02:00
|
|
|
/usr/local/bin/matrix-synapse-register-user mjolnir {{ awx_mjolnir_user_password | quote }} 0
|
2021-08-13 10:05:57 +02:00
|
|
|
register: cmd
|
2021-10-10 07:23:49 +02:00
|
|
|
when: not awx_mjolnir_user_created|bool
|
2021-08-13 10:05:57 +02:00
|
|
|
no_log: True
|
|
|
|
|
|
|
|
- name: Update AWX dimension user created variable
|
|
|
|
delegate_to: 127.0.0.1
|
|
|
|
lineinfile:
|
|
|
|
path: '/var/lib/awx/projects/clients/{{ member_id }}/{{ subscription_id }}/matrix_vars.yml'
|
|
|
|
regexp: "^#? *{{ item.key | regex_escape() }}:"
|
|
|
|
line: "{{ item.key }}: {{ item.value }}"
|
|
|
|
insertafter: 'AWX Settings'
|
|
|
|
with_dict:
|
2021-10-10 07:23:49 +02:00
|
|
|
'awx_mjolnir_user_created': 'true'
|
|
|
|
when: not awx_mjolnir_user_created|bool
|
2021-08-13 10:05:57 +02:00
|
|
|
|
|
|
|
- name: Ensure /chroot/website location has correct permissions
|
|
|
|
file:
|
|
|
|
path: /chroot/website
|
|
|
|
state: directory
|
|
|
|
owner: matrix
|
|
|
|
group: matrix
|
|
|
|
mode: '0770'
|
2021-10-10 07:23:49 +02:00
|
|
|
when: awx_customise_base_domain_website is defined
|