playbooks: Unite admin password

Use SomeADMINpassword as the admin password everywhere, also in all
playbooks.
This commit is contained in:
Thomas Woerner
2020-02-26 12:40:22 +01:00
parent 2b29a90c0d
commit d370ed2737
102 changed files with 106 additions and 106 deletions

View File

@@ -7,6 +7,6 @@
tasks: tasks:
- name: Ensure HBAC Rule allhosts is absent - name: Ensure HBAC Rule allhosts is absent
ipahbacrule: ipahbacrule:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: allhosts name: allhosts
state: absent state: absent

View File

@@ -7,6 +7,6 @@
tasks: tasks:
- name: Ensure HBAC Rule allhosts is disabled - name: Ensure HBAC Rule allhosts is disabled
ipahbacrule: ipahbacrule:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: allhosts name: allhosts
state: disabled state: disabled

View File

@@ -7,6 +7,6 @@
tasks: tasks:
- name: Ensure HBAC Rule allhosts is enabled - name: Ensure HBAC Rule allhosts is enabled
ipahbacrule: ipahbacrule:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: allhosts name: allhosts
state: enabled state: enabled

View File

@@ -7,6 +7,6 @@
tasks: tasks:
- name: Ensure HBAC Rule allhosts is present - name: Ensure HBAC Rule allhosts is present
ipahbacrule: ipahbacrule:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: allhosts name: allhosts
usercategory: all usercategory: all

View File

@@ -7,7 +7,7 @@
tasks: tasks:
- name: Ensure host server is absent in HBAC Rule allhosts - name: Ensure host server is absent in HBAC Rule allhosts
ipahbacrule: ipahbacrule:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: allhosts name: allhosts
host: server host: server
action: member action: member

View File

@@ -7,7 +7,7 @@
tasks: tasks:
- name: Ensure host server is present in HBAC Rule allhosts - name: Ensure host server is present in HBAC Rule allhosts
ipahbacrule: ipahbacrule:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: allhosts name: allhosts
host: server host: server
action: member action: member

View File

@@ -7,6 +7,6 @@
tasks: tasks:
- name: Ensure HBAC Services for http and tftp are absent - name: Ensure HBAC Services for http and tftp are absent
ipahbacsvc: ipahbacsvc:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: http,tftp name: http,tftp
state: absent state: absent

View File

@@ -7,12 +7,12 @@
tasks: tasks:
- name: Ensure HBAC Service for http is present - name: Ensure HBAC Service for http is present
ipahbacsvc: ipahbacsvc:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: http name: http
description: Web service description: Web service
- name: Ensure HBAC Service for tftp is present - name: Ensure HBAC Service for tftp is present
ipahbacsvc: ipahbacsvc:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: tftp name: tftp
description: TFTP service description: TFTP service

View File

@@ -7,7 +7,7 @@
tasks: tasks:
- name: Ensure HBAC Service Group login is absent - name: Ensure HBAC Service Group login is absent
ipahbacsvcgroup: ipahbacsvcgroup:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: login name: login
hbacsvc: hbacsvc:
- sshd - sshd

View File

@@ -7,7 +7,7 @@
tasks: tasks:
- name: Ensure HBAC Services sshd is absent in HBAC Service Group login - name: Ensure HBAC Services sshd is absent in HBAC Service Group login
ipahbacsvcgroup: ipahbacsvcgroup:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: login name: login
hbacsvc: hbacsvc:
- sshd - sshd

View File

@@ -7,7 +7,7 @@
tasks: tasks:
- name: Ensure HBAC Service sshd is present in HBAC Service Group login - name: Ensure HBAC Service sshd is present in HBAC Service Group login
ipahbacsvcgroup: ipahbacsvcgroup:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: login name: login
hbacsvc: hbacsvc:
- sshd - sshd

View File

@@ -7,7 +7,7 @@
tasks: tasks:
- name: Ensure HBAC Service sshd is present in HBAC Service Group login - name: Ensure HBAC Service sshd is present in HBAC Service Group login
ipahbacsvcgroup: ipahbacsvcgroup:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: login name: login
hbacsvc: hbacsvc:
- sshd - sshd

View File

@@ -6,6 +6,6 @@
tasks: tasks:
- name: Ensure host host01.example.com is absent - name: Ensure host host01.example.com is absent
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: host01.example.com name: host01.example.com
state: absent state: absent

View File

@@ -6,6 +6,6 @@
tasks: tasks:
- name: Disable host host01.example.com - name: Disable host host01.example.com
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: host01.example.com name: host01.example.com
state: disabled state: disabled

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Host "{{ 'host1.' + ipaserver_domain }}" present with random password - name: Host "{{ 'host1.' + ipaserver_domain }}" present with random password
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: "{{ 'host1.' + ipaserver_domain }}" name: "{{ 'host1.' + ipaserver_domain }}"
random: yes random: yes
force: yes force: yes

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Host host1.example.com members allow_create_keytab absent for users, groups, hosts and hostgroups - name: Host host1.example.com members allow_create_keytab absent for users, groups, hosts and hostgroups
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: host01.exmaple.com name: host01.exmaple.com
allow_create_keytab_user: allow_create_keytab_user:
- user01 - user01

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Host host1.example.com members allow_create_keytab present for users, groups, hosts and hostgroups - name: Host host1.example.com members allow_create_keytab present for users, groups, hosts and hostgroups
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: host01.exmaple.com name: host01.exmaple.com
allow_create_keytab_user: allow_create_keytab_user:
- user01 - user01

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Host host1.example.com members allow_retrieve_keytab absent for users, groups, hosts and hostgroups - name: Host host1.example.com members allow_retrieve_keytab absent for users, groups, hosts and hostgroups
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: host01.exmaple.com name: host01.exmaple.com
allow_retrieve_keytab_user: allow_retrieve_keytab_user:
- user01 - user01

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Host host1.example.com members allow_retrieve_keytab present for users, groups, hosts and hostgroups - name: Host host1.example.com members allow_retrieve_keytab present for users, groups, hosts and hostgroups
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: host01.exmaple.com name: host01.exmaple.com
allow_retrieve_keytab_user: allow_retrieve_keytab_user:
- user01 - user01

View File

@@ -5,7 +5,7 @@
tasks: tasks:
- name: Host host01.example.com member certificate absent - name: Host host01.example.com member certificate absent
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: host01.example.com name: host01.example.com
certificate: certificate:
- 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

View File

@@ -5,7 +5,7 @@
tasks: tasks:
- name: Host host01.example.com member certificate present - name: Host host01.example.com member certificate present
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: host01.example.com name: host01.example.com
certificate: certificate:
- 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

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Ensure host01.example.com IP addresses absent - name: Ensure host01.example.com IP addresses absent
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: host01.example.com name: host01.example.com
ip_address: ip_address:
- 192.168.0.123 - 192.168.0.123

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Ensure host01.example.com IP addresses present - name: Ensure host01.example.com IP addresses present
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: host01.example.com name: host01.example.com
ip_address: ip_address:
- 192.168.0.123 - 192.168.0.123

View File

@@ -5,7 +5,7 @@
tasks: tasks:
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: host01.exmaple.com name: host01.exmaple.com
managedby_host: server.exmaple.com managedby_host: server.exmaple.com
action: member action: member

View File

@@ -5,7 +5,7 @@
tasks: tasks:
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: host01.exmaple.com name: host01.exmaple.com
managedby_host: server.exmaple.com managedby_host: server.exmaple.com
action: member action: member

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Host host01.example.com principals host/testhost01.example.com and host/myhost01.example.com absent - name: Host host01.example.com principals host/testhost01.example.com and host/myhost01.example.com absent
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: host01.example.com name: host01.example.com
principal: principal:
- host/testhost01.example.com - host/testhost01.example.com

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Host host01.example.com principals host/testhost01.example.com and host/myhost01.example.com present - name: Host host01.example.com principals host/testhost01.example.com and host/myhost01.example.com present
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: host01.example.com name: host01.example.com
principal: principal:
- host/testhost01.example.com - host/testhost01.example.com

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Host host1.example.com present with allow_create_keytab for users, groups, hosts and hostgroups - name: Host host1.example.com present with allow_create_keytab for users, groups, hosts and hostgroups
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: host01.exmaple.com name: host01.exmaple.com
allow_create_keytab_user: allow_create_keytab_user:
- user01 - user01

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Host host1.example.com present with allow_retrieve_keytab for users, groups, hosts and hostgroups - name: Host host1.example.com present with allow_retrieve_keytab for users, groups, hosts and hostgroups
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: host01.exmaple.com name: host01.exmaple.com
allow_retrieve_keytab_user: allow_retrieve_keytab_user:
- user01 - user01

View File

@@ -5,7 +5,7 @@
tasks: tasks:
- name: Host host01.example.com present with certificate - name: Host host01.example.com present with certificate
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: host01.example.com name: host01.example.com
certificate: certificate:
- MIIC/zCCAeegAwIBAgIUZGHLaSYg1myp6EI4VGWSC27vOrswDQYJKoZIhvcNAQELBQAwDzENMAsGA1UEAwwEdGVzdDAeFw0xOTEwMTQxNjI4MzVaFw0yMDEwMTMxNjI4MzVaMA8xDTALBgNVBAMMBHRlc3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDER/lB8wUAmPTSwSc/NOXNlzdpPOQDSwrhKH6XsqZF4KpQoSY/nmCjAhJmOVpOUo4K2fGRZ0yAH9fkGv6yJP6c7IAFjLeec7GPHVwN4bZrP1DXfTAmfmXhcRQbCYkV+wmq8Puzw/+xA9EJrrodnJPPsE6E8HnSVLF6Ys9+cJMJ7HuwOI+wYt3gkmspsir1tccmf4x1PP+yHJWdcXyetlFRcmZ8gspjqOR2jb89xSQsh8gcyDW6rPNlSTzYZ2FmNtjES6ZhCsYL31fQbF2QglidlLGpAlvHUUS+xCigW73cvhFPMWXcfO51Mr15RcgYTckY+7QZ2nYqplRBoDlQl6DnAgMBAAGjUzBRMB0GA1UdDgQWBBTPG99XVRdxpOXMZo3Nhy+ldnf13TAfBgNVHSMEGDAWgBTPG99XVRdxpOXMZo3Nhy+ldnf13TAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQAjWTcnIl2mpNbfHAN8DB4Kk+RNRmhsH0y+r/47MXVTMMMToCfofeNY3Jeohu+2lIXMPQfTvXUbDTkNAGsGLv6LtQEUfSREqgk1eY7bT9BFfpH1uV2ZFhCO9jBA+E4bf55Kx7bgUNG31ykBshOsOblOJM1lS/0q4TWHAxrsU2PNwPi8X0ten+eGeB8aRshxS17Ij2cH0fdAMmSA+jMAvTIZl853Bxe0HuozauKwOFWL4qHm61c4O/j1mQCLqJKYfJ9mBDWFQLszd/tF+ePKiNhZCQly60F8Lumn2CDZj5UIkl8wk9Wls5n1BIQs+M8AN65NAdv7+js8jKUKCuyji8r3 - MIIC/zCCAeegAwIBAgIUZGHLaSYg1myp6EI4VGWSC27vOrswDQYJKoZIhvcNAQELBQAwDzENMAsGA1UEAwwEdGVzdDAeFw0xOTEwMTQxNjI4MzVaFw0yMDEwMTMxNjI4MzVaMA8xDTALBgNVBAMMBHRlc3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDER/lB8wUAmPTSwSc/NOXNlzdpPOQDSwrhKH6XsqZF4KpQoSY/nmCjAhJmOVpOUo4K2fGRZ0yAH9fkGv6yJP6c7IAFjLeec7GPHVwN4bZrP1DXfTAmfmXhcRQbCYkV+wmq8Puzw/+xA9EJrrodnJPPsE6E8HnSVLF6Ys9+cJMJ7HuwOI+wYt3gkmspsir1tccmf4x1PP+yHJWdcXyetlFRcmZ8gspjqOR2jb89xSQsh8gcyDW6rPNlSTzYZ2FmNtjES6ZhCsYL31fQbF2QglidlLGpAlvHUUS+xCigW73cvhFPMWXcfO51Mr15RcgYTckY+7QZ2nYqplRBoDlQl6DnAgMBAAGjUzBRMB0GA1UdDgQWBBTPG99XVRdxpOXMZo3Nhy+ldnf13TAfBgNVHSMEGDAWgBTPG99XVRdxpOXMZo3Nhy+ldnf13TAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQAjWTcnIl2mpNbfHAN8DB4Kk+RNRmhsH0y+r/47MXVTMMMToCfofeNY3Jeohu+2lIXMPQfTvXUbDTkNAGsGLv6LtQEUfSREqgk1eY7bT9BFfpH1uV2ZFhCO9jBA+E4bf55Kx7bgUNG31ykBshOsOblOJM1lS/0q4TWHAxrsU2PNwPi8X0ten+eGeB8aRshxS17Ij2cH0fdAMmSA+jMAvTIZl853Bxe0HuozauKwOFWL4qHm61c4O/j1mQCLqJKYfJ9mBDWFQLszd/tF+ePKiNhZCQly60F8Lumn2CDZj5UIkl8wk9Wls5n1BIQs+M8AN65NAdv7+js8jKUKCuyji8r3

View File

@@ -5,7 +5,7 @@
tasks: tasks:
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: host01.exmaple.com name: host01.exmaple.com
managedby_host: server.exmaple.com managedby_host: server.exmaple.com
force: yes force: yes

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Host host01.example.com present with principals host/testhost01.example.com and host/myhost01.example.com - name: Host host01.example.com present with principals host/testhost01.example.com and host/myhost01.example.com
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: host01.example.com name: host01.example.com
principal: principal:
- host/testhost01.example.com - host/testhost01.example.com

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Host host01.example.com present with random password - name: Host host01.example.com present with random password
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: host01.example.com name: host01.example.com
random: yes random: yes
force: yes force: yes

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Ensure host is present - name: Ensure host is present
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: host01.example.com name: host01.example.com
description: Example host description: Example host
ip_address: ip_address:

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Ensure host is present - name: Ensure host is present
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: host01.example.com name: host01.example.com
description: Example host description: Example host
ip_address: 192.168.0.123 ip_address: 192.168.0.123

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Hosts host01.example.com and host01.exmaple.com member certificate absent - name: Hosts host01.example.com and host01.exmaple.com member certificate absent
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
hosts: hosts:
- name: host01.example.com - name: host01.example.com
certificate: certificate:

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Hosts host01.example.com and host01.exmaple.com member certificate present - name: Hosts host01.example.com and host01.exmaple.com member certificate present
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
hosts: hosts:
- name: host01.example.com - name: host01.example.com
certificate: certificate:

View File

@@ -5,7 +5,7 @@
tasks: tasks:
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
hosts: hosts:
- name: host01.exmaple.com - name: host01.exmaple.com
managedby_host: server.exmaple.com managedby_host: server.exmaple.com

View File

@@ -5,7 +5,7 @@
tasks: tasks:
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
hosts: hosts:
- name: host01.exmaple.com - name: host01.exmaple.com
managedby_host: server.exmaple.com managedby_host: server.exmaple.com

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Hosts host01.exmaple.com and host02.exmaple.com member principals host/testhost0X.exmaple.com absent - name: Hosts host01.exmaple.com and host02.exmaple.com member principals host/testhost0X.exmaple.com absent
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
hosts: hosts:
- name: host01.exmaple.com - name: host01.exmaple.com
principal: principal:

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Hosts host01.exmaple.com and host02.exmaple.com member principals host/testhost0X.exmaple.com present - name: Hosts host01.exmaple.com and host02.exmaple.com member principals host/testhost0X.exmaple.com present
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
hosts: hosts:
- name: host01.exmaple.com - name: host01.exmaple.com
principal: principal:

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Hosts host01.example.com and host01.exmaple.com present with certificate - name: Hosts host01.example.com and host01.exmaple.com present with certificate
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
hosts: hosts:
- name: host01.example.com - name: host01.example.com
certificate: certificate:

View File

@@ -5,7 +5,7 @@
tasks: tasks:
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
hosts: hosts:
- name: host01.exmaple.com - name: host01.exmaple.com
managedby_host: server.exmaple.com managedby_host: server.exmaple.com

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Hosts host01.example.com and host01.example.com present with random passwords - name: Hosts host01.example.com and host01.example.com present with random passwords
ipahost: ipahost:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
hosts: hosts:
- name: host01.example.com - name: host01.example.com
random: yes random: yes

View File

@@ -6,6 +6,6 @@
tasks: tasks:
# Ensure host-group databases is present # Ensure host-group databases is present
- ipahostgroup: - ipahostgroup:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: databases name: databases
state: absent state: absent

View File

@@ -6,7 +6,7 @@
tasks: tasks:
# Ensure host-group databases is present # Ensure host-group databases is present
- ipahostgroup: - ipahostgroup:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: databases name: databases
host: host:
- db.example.com - db.example.com

View File

@@ -6,7 +6,7 @@
tasks: tasks:
# Ensure hosts and hostgroups are present in existing databases hostgroup # Ensure hosts and hostgroups are present in existing databases hostgroup
- ipahostgroup: - ipahostgroup:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: databases name: databases
host: host:
- db.example.com - db.example.com

View File

@@ -6,7 +6,7 @@
tasks: tasks:
# Ensure hosts and hostgroups are present in existing databases hostgroup # Ensure hosts and hostgroups are present in existing databases hostgroup
- ipahostgroup: - ipahostgroup:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: databases name: databases
host: host:
- db.example.com - db.example.com

View File

@@ -6,6 +6,6 @@
tasks: tasks:
# Ensure sudo command is absent # Ensure sudo command is absent
- ipasudocmd: - ipasudocmd:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: /usr/bin/su name: /usr/bin/su
state: absent state: absent

View File

@@ -6,6 +6,6 @@
tasks: tasks:
# Ensure sudo command is present # Ensure sudo command is present
- ipasudocmd: - ipasudocmd:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: /usr/bin/su name: /usr/bin/su
state: present state: present

View File

@@ -6,7 +6,7 @@
tasks: tasks:
# Ensure sudocmds are absent in sudocmdgroup # Ensure sudocmds are absent in sudocmdgroup
- ipasudocmdgroup: - ipasudocmdgroup:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: network name: network
sudocmd: sudocmd:
- /usr/sbin/ifconfig - /usr/sbin/ifconfig

View File

@@ -6,7 +6,7 @@
tasks: tasks:
# Ensure sudo commands are present # Ensure sudo commands are present
- ipasudocmd: - ipasudocmd:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: name:
- /usr/sbin/ifconfig - /usr/sbin/ifconfig
- /usr/sbin/iwlist - /usr/sbin/iwlist
@@ -14,7 +14,7 @@
# Ensure sudo commands are present in existing sudocmdgroup # Ensure sudo commands are present in existing sudocmdgroup
- ipasudocmdgroup: - ipasudocmdgroup:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: network name: network
sudocmd: sudocmd:
- /usr/sbin/ifconfig - /usr/sbin/ifconfig

View File

@@ -7,7 +7,7 @@
tasks: tasks:
# Ensure sudooption is absent in sudorule # Ensure sudooption is absent in sudorule
- ipasudorule: - ipasudorule:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: testrule1 name: testrule1
sudooption: "!root" sudooption: "!root"
action: member action: member

View File

@@ -7,7 +7,7 @@
tasks: tasks:
# Ensure sudooption is present in sudorule # Ensure sudooption is present in sudorule
- ipasudorule: - ipasudorule:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: testrule1 name: testrule1
sudooption: "!root" sudooption: "!root"
action: member action: member

View File

@@ -7,7 +7,7 @@
tasks: tasks:
# Ensure host server is absent in Sudo Rule # Ensure host server is absent in Sudo Rule
- ipasudorule: - ipasudorule:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: testrule1 name: testrule1
host: server host: server
action: member action: member

View File

@@ -7,7 +7,7 @@
tasks: tasks:
# Ensure host server is present in Sudo Rule # Ensure host server is present in Sudo Rule
- ipasudorule: - ipasudorule:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: testrule1 name: testrule1
host: server host: server
action: member action: member

View File

@@ -7,7 +7,7 @@
tasks: tasks:
# Ensure hostgroup cluster is absent in Sudo Rule # Ensure hostgroup cluster is absent in Sudo Rule
- ipasudorule: - ipasudorule:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: testrule1 name: testrule1
hostgroup: cluster hostgroup: cluster
action: member action: member

View File

@@ -7,7 +7,7 @@
tasks: tasks:
# Ensure hostgrep cluster is present in Sudo Rule # Ensure hostgrep cluster is present in Sudo Rule
- ipasudorule: - ipasudorule:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: testrule1 name: testrule1
hostgroup: cluster hostgroup: cluster
action: member action: member

View File

@@ -6,6 +6,6 @@
tasks: tasks:
# Ensure sudorule command is disabled # Ensure sudorule command is disabled
- ipasudorule: - ipasudorule:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: testrule1 name: testrule1
state: disabled state: disabled

View File

@@ -6,6 +6,6 @@
tasks: tasks:
# Ensure sudorule command is enabled # Ensure sudorule command is enabled
- ipasudorule: - ipasudorule:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: testrule1 name: testrule1
state: enabled state: enabled

View File

@@ -7,6 +7,6 @@
tasks: tasks:
# Ensure sudorule is present with the given order. # Ensure sudorule is present with the given order.
- ipasudorule: - ipasudorule:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: testrule1 name: testrule1
order: 2 order: 2

View File

@@ -6,7 +6,7 @@
tasks: tasks:
# Ensure sudorule command is present # Ensure sudorule command is present
- ipasudorule: - ipasudorule:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: testrule1 name: testrule1
description: A test sudo rule. description: A test sudo rule.
allow_sudocmd: /bin/ls allow_sudocmd: /bin/ls

View File

@@ -7,7 +7,7 @@
tasks: tasks:
# Ensure sudorule is present with the given order. # Ensure sudorule is present with the given order.
- ipasudorule: - ipasudorule:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: testrule1 name: testrule1
runasuser: admin runasuser: admin
action: member action: member

View File

@@ -7,7 +7,7 @@
tasks: tasks:
# Ensure sudorule is present with the given order. # Ensure sudorule is present with the given order.
- ipasudorule: - ipasudorule:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: testrule1 name: testrule1
runasuser: admin runasuser: admin
action: member action: member

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- ipasudorule: - ipasudorule:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: testrule1 name: testrule1
allow_sudocmd: allow_sudocmd:
- /sbin/ifconfig - /sbin/ifconfig

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- ipasudorule: - ipasudorule:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: testrule1 name: testrule1
allow_sudocmd: allow_sudocmd:
- /sbin/ifconfig - /sbin/ifconfig

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Add topology segment - name: Add topology segment
ipatopologysegment: ipatopologysegment:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
suffix: domain suffix: domain
left: ipareplica1.test.local left: ipareplica1.test.local
right: ipareplica2.test.local right: ipareplica2.test.local

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Delete topology segment - name: Delete topology segment
ipatopologysegment: ipatopologysegment:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
suffix: domain suffix: domain
left: ipareplica1.test.local left: ipareplica1.test.local
right: ipareplica2.test.local right: ipareplica2.test.local

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Reinitialize topology segment - name: Reinitialize topology segment
ipatopologysegment: ipatopologysegment:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
suffix: domain suffix: domain
left: ipareplica1.test.local left: ipareplica1.test.local
right: ipareplica2.test.local right: ipareplica2.test.local

View File

@@ -6,6 +6,6 @@
tasks: tasks:
- name: Verify topology suffix - name: Verify topology suffix
ipatopologysuffix: ipatopologysuffix:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
suffix: domain suffix: domain
state: verified state: verified

View File

@@ -6,19 +6,19 @@
tasks: tasks:
- name: Create group ops with gid 1234 - name: Create group ops with gid 1234
ipagroup: ipagroup:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: ops name: ops
gidnumber: 1234 gidnumber: 1234
- name: Create group sysops - name: Create group sysops
ipagroup: ipagroup:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: sysops name: sysops
user: user:
- pinky - pinky
- name: Create group appops - name: Create group appops
ipagroup: ipagroup:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: appops name: appops

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Add group members sysops and appops to group sysops - name: Add group members sysops and appops to group sysops
ipagroup: ipagroup:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: ops name: ops
group: group:
- sysops - sysops

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Add user member brain to group sysops - name: Add user member brain to group sysops
ipagroup: ipagroup:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: sysops name: sysops
action: member action: member
user: user:

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Create user pinky - name: Create user pinky
ipauser: ipauser:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: pinky name: pinky
first: pinky first: pinky
last: Acme last: Acme

View File

@@ -6,6 +6,6 @@
tasks: tasks:
- name: Remove goups sysops, appops and ops - name: Remove goups sysops, appops and ops
ipagroup: ipagroup:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: sysops,appops,ops name: sysops,appops,ops
state: absent state: absent

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Delete and preserve user pinky - name: Delete and preserve user pinky
ipauser: ipauser:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: pinky name: pinky
preserve: yes preserve: yes
state: absent state: absent

View File

@@ -6,6 +6,6 @@
tasks: tasks:
- name: Remove user pinky and brain - name: Remove user pinky and brain
ipauser: ipauser:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: pinky name: pinky
state: absent state: absent

View File

@@ -6,6 +6,6 @@
tasks: tasks:
- name: Disable user pinky - name: Disable user pinky
ipauser: ipauser:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: pinky name: pinky
state: disabled state: disabled

View File

@@ -6,6 +6,6 @@
tasks: tasks:
- name: Enable user pinky - name: Enable user pinky
ipauser: ipauser:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: pinky name: pinky
state: enabled state: enabled

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: User user1 present with random password - name: User user1 present with random password
ipauser: ipauser:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: user1 name: user1
first: first1 first: first1
last: last1 last: last1

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- name: Users user1 and user1 present with random password - name: Users user1 and user1 present with random password
ipauser: ipauser:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
users: users:
- name: user1 - name: user1
first: first1 first: first1

View File

@@ -6,6 +6,6 @@
tasks: tasks:
- name: Undelete preserved user pinky - name: Undelete preserved user pinky
ipauser: ipauser:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: pinky name: pinky
state: undeleted state: undeleted

View File

@@ -6,6 +6,6 @@
tasks: tasks:
- name: Unlock users pinky and brain - name: Unlock users pinky and brain
ipauser: ipauser:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: pinky,brain name: pinky,brain
state: unlocked state: unlocked

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- ipavault: - ipavault:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: asymvault name: asymvault
username: user01 username: user01
vault_data: The world of π is half rounded. vault_data: The world of π is half rounded.

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- ipavault: - ipavault:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: symvault name: symvault
username: admin username: admin
vault_password: MyVaultPassword123 vault_password: MyVaultPassword123

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- ipavault: - ipavault:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: asymvault name: asymvault
username: admin username: admin
state: absent state: absent

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- ipavault: - ipavault:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: asymvault name: asymvault
username: admin username: admin
vault_public_key: LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUlHZk1BMEdDU3FHU0liM0RRRUJBUVVBQTRHTkFEQ0JpUUtCZ1FDdGFudjRkK3ptSTZ0T3ova1RXdGowY3AxRAowUENoYy8vR0pJMTUzTi9CN3UrN0h3SXlRVlZoNUlXZG1UcCtkWXYzd09yeVpPbzYvbHN5eFJaZ2pZRDRwQ3VGCjlxM295VTFEMnFOZERYeGtSaFFETXBiUEVSWWlHbE1jbzdhN0hIVDk1bGNQbmhObVFkb3VGdHlVbFBUVS96V1kKZldYWTBOeU1UbUtoeFRseUV3SURBUUFCCi0tLS0tRU5EIFBVQkxJQyBLRVktLS0tLQo= vault_public_key: LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUlHZk1BMEdDU3FHU0liM0RRRUJBUVVBQTRHTkFEQ0JpUUtCZ1FDdGFudjRkK3ptSTZ0T3ova1RXdGowY3AxRAowUENoYy8vR0pJMTUzTi9CN3UrN0h3SXlRVlZoNUlXZG1UcCtkWXYzd09yeVpPbzYvbHN5eFJaZ2pZRDRwQ3VGCjlxM295VTFEMnFOZERYeGtSaFFETXBiUEVSWWlHbE1jbzdhN0hIVDk1bGNQbmhObVFkb3VGdHlVbFBUVS96V1kKZldYWTBOeU1UbUtoeFRseUV3SURBUUFCCi0tLS0tRU5EIFBVQkxJQyBLRVktLS0tLQo=

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- ipavault: - ipavault:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: svcvault name: svcvault
service: "HTTP/{{ groups.ipaserver[0] }}" service: "HTTP/{{ groups.ipaserver[0] }}"
state: absent state: absent

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- ipavault: - ipavault:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: svcvault name: svcvault
service: "HTTP/{{ groups.ipaserver[0] }}" service: "HTTP/{{ groups.ipaserver[0] }}"
ipavaultpassword: MyVaultPassword123 ipavaultpassword: MyVaultPassword123

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- ipavault: - ipavault:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: sharedvault name: sharedvault
shared: True shared: True
state: absent state: absent

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- ipavault: - ipavault:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: sharedvault name: sharedvault
shared: True shared: True
ipavaultpassword: MyVaultPassword123 ipavaultpassword: MyVaultPassword123

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- ipavault: - ipavault:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: stdvault name: stdvault
username: admin username: admin
state: absent state: absent

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- ipavault: - ipavault:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: stdvault name: stdvault
vault_type: standard vault_type: standard
username: admin username: admin

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- ipavault: - ipavault:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: symvault name: symvault
username: admin username: admin
state: absent state: absent

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- ipavault: - ipavault:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: symvault name: symvault
username: admin username: admin
vault_password: MyVaultPassword123 vault_password: MyVaultPassword123

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- ipavault: - ipavault:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: stdvault name: stdvault
vault_type: standard vault_type: standard
username: admin username: admin

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- ipavault: - ipavault:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: keychain name: keychain
username: admin username: admin
state: absent state: absent

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- ipavault: - ipavault:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: keychain name: keychain
username: admin username: admin
state: present state: present

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- ipavault: - ipavault:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: keychain name: keychain
username: admin username: admin
state: absent state: absent

View File

@@ -6,7 +6,7 @@
tasks: tasks:
- ipavault: - ipavault:
ipaadmin_password: MyPassword123 ipaadmin_password: SomeADMINpassword
name: keychain name: keychain
username: admin username: admin
state: present state: present

Some files were not shown because too many files have changed in this diff Show More