tests: Unite admin passwords

The tests have been using MyPassword123 and also SomeADMINpassword within
the tasks of the tests. SomeADMINpassword should be used everywhere.
This commit is contained in:
Thomas Woerner
2020-02-26 12:35:56 +01:00
parent 8f91c209c7
commit d3c6b976ba
22 changed files with 406 additions and 406 deletions

View File

@@ -12,7 +12,7 @@
- name: Ensure host-group databases, mysql-server and oracle-server are absent
ipahostgroup:
ipaadmin_password: MyPassword123
ipaadmin_password: SomeADMINpassword
name:
- databases
- mysql-server
@@ -21,7 +21,7 @@
- name: Test hosts db1 and db2 absent
ipahost:
ipaadmin_password: MyPassword123
ipaadmin_password: SomeADMINpassword
name:
- "{{ 'db1.' + ipaserver_domain }}"
- "{{ 'db2.' + ipaserver_domain }}"
@@ -29,7 +29,7 @@
- name: Host "{{ 'db1.' + ipaserver_domain }}" present
ipahost:
ipaadmin_password: MyPassword123
ipaadmin_password: SomeADMINpassword
name: "{{ 'db1.' + ipaserver_domain }}"
force: yes
register: result
@@ -37,7 +37,7 @@
- name: Host "{{ 'db2.' + ipaserver_domain }}" present
ipahost:
ipaadmin_password: MyPassword123
ipaadmin_password: SomeADMINpassword
name: "{{ 'db2.' + ipaserver_domain }}"
force: yes
register: result
@@ -45,7 +45,7 @@
- name: Ensure host-group mysql-server is present
ipahostgroup:
ipaadmin_password: MyPassword123
ipaadmin_password: SomeADMINpassword
name: mysql-server
state: present
register: result
@@ -53,7 +53,7 @@
- name: Ensure host-group mysql-server is present again
ipahostgroup:
ipaadmin_password: MyPassword123
ipaadmin_password: SomeADMINpassword
name: mysql-server
state: present
register: result
@@ -61,7 +61,7 @@
- name: Ensure host-group oracle-server is present
ipahostgroup:
ipaadmin_password: MyPassword123
ipaadmin_password: SomeADMINpassword
name: oracle-server
state: present
register: result
@@ -69,7 +69,7 @@
- name: Ensure host-group oracle-server is present again
ipahostgroup:
ipaadmin_password: MyPassword123
ipaadmin_password: SomeADMINpassword
name: oracle-server
state: present
register: result
@@ -77,7 +77,7 @@
- name: Ensure host-group databases is present
ipahostgroup:
ipaadmin_password: MyPassword123
ipaadmin_password: SomeADMINpassword
name: databases
state: present
host:
@@ -89,7 +89,7 @@
- name: Ensure host-group databases is present again
ipahostgroup:
ipaadmin_password: MyPassword123
ipaadmin_password: SomeADMINpassword
name: databases
state: present
host:
@@ -101,7 +101,7 @@
- name: Ensure host db2 is member of host-group databases
ipahostgroup:
ipaadmin_password: MyPassword123
ipaadmin_password: SomeADMINpassword
name: databases
state: present
host:
@@ -112,7 +112,7 @@
- name: Ensure host db2 is member of host-group databases again
ipahostgroup:
ipaadmin_password: MyPassword123
ipaadmin_password: SomeADMINpassword
name: databases
state: present
host:
@@ -123,7 +123,7 @@
- name: Ensure host-group mysql-server is member of host-group databases
ipahostgroup:
ipaadmin_password: MyPassword123
ipaadmin_password: SomeADMINpassword
name: databases
state: present
hostgroup:
@@ -134,7 +134,7 @@
- name: Ensure host-group mysql-server is member of host-group databases again
ipahostgroup:
ipaadmin_password: MyPassword123
ipaadmin_password: SomeADMINpassword
name: databases
state: present
hostgroup:
@@ -145,7 +145,7 @@
- name: Ensure host-group oracle-server is member of host-group databases (again)
ipahostgroup:
ipaadmin_password: MyPassword123
ipaadmin_password: SomeADMINpassword
name: databases
state: present
hostgroup:
@@ -156,7 +156,7 @@
- name: Ensure host-group databases, mysql-server and oracle-server are absent
ipahostgroup:
ipaadmin_password: MyPassword123
ipaadmin_password: SomeADMINpassword
name:
- databases
- mysql-server
@@ -167,7 +167,7 @@
- name: Ensure host-group databases, mysql-server and oracle-server are absent again
ipahostgroup:
ipaadmin_password: MyPassword123
ipaadmin_password: SomeADMINpassword
name:
- databases
- mysql-server
@@ -178,7 +178,7 @@
- name: Test hosts db1 and db2 absent
ipahost:
ipaadmin_password: MyPassword123
ipaadmin_password: SomeADMINpassword
name:
- "{{ 'db1.' + ipaserver_domain }}"
- "{{ 'db2.' + ipaserver_domain }}"