Skip to content
Snippets Groups Projects
Commit df87ff46 authored by Rafael Guterres Jeffman's avatar Rafael Guterres Jeffman
Browse files

example playbooks: ipaadmin_password is used and consistent.

Some example playbooks do not had the parameter `ipaadmin_password`
set, and some had a different value than the standard value
"SomeADMINpassword".

This patch fixes this difference in all example playbooks.
parent 4b8358b8
Branches
Tags
No related merge requests found
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
tasks: tasks:
- name: Ensure sudocmdgroup sudocmds are present - name: Ensure sudocmdgroup sudocmds are present
ipasudocmdgroup: ipasudocmdgroup:
ipaadmin_password: pass1234 ipaadmin_password: SomeADMINpassword
name: network name: network
description: Group of important commands. description: Group of important commands.
sudocmd: sudocmd:
......
...@@ -6,6 +6,6 @@ ...@@ -6,6 +6,6 @@
tasks: tasks:
- name: Ensure sudorule command is absent - name: Ensure sudorule command is absent
ipasudorule: ipasudorule:
ipaadmin_password: pass1234 ipaadmin_password: SomeADMINpassword
name: testrule1 name: testrule1
state: absent state: absent
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
tasks: tasks:
- name: Add topology segment - name: Add topology segment
ipatopologysegment: ipatopologysegment:
ipaadmin_password: "{{ ipaadmin_password }}" ipaadmin_password: SomeADMINpassword
suffix: "{{ item.suffix }}" suffix: "{{ item.suffix }}"
name: "{{ item.name | default(omit) }}" name: "{{ item.name | default(omit) }}"
left: "{{ item.left }}" left: "{{ item.left }}"
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
tasks: tasks:
- name: Add topology segment - name: Add topology segment
ipatopologysegment: ipatopologysegment:
ipaadmin_password: "{{ ipaadmin_password }}" ipaadmin_password: SomeADMINpassword
suffix: "{{ item.suffix }}" suffix: "{{ item.suffix }}"
name: "{{ item.name | default(omit) }}" name: "{{ item.name | default(omit) }}"
left: "{{ item.left }}" left: "{{ item.left }}"
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
tasks: tasks:
- name: Add topology segment - name: Add topology segment
ipatopologysegment: ipatopologysegment:
ipaadmin_password: "{{ ipaadmin_password }}" ipaadmin_password: SomeADMINpassword
suffix: "{{ item.suffix }}" suffix: "{{ item.suffix }}"
name: "{{ item.name | default(omit) }}" name: "{{ item.name | default(omit) }}"
left: "{{ item.left }}" left: "{{ item.left }}"
......
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
tasks: tasks:
- name: ensure the trust is present - name: ensure the trust is present
ipatrust: ipatrust:
ipaadmin_password: SomeADMINpassword
realm: windows.local realm: windows.local
admin: Administrator admin: Administrator
password: secret_password password: secret_password
......
...@@ -6,5 +6,6 @@ ...@@ -6,5 +6,6 @@
tasks: tasks:
- name: ensure the trust is absent - name: ensure the trust is absent
ipatrust: ipatrust:
ipaadmin_password: SomeADMINpassword
realm: windows.local realm: windows.local
state: absent state: absent
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment