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

Fix host's module managedby_host playbooks.

The host's module example playbooks had syntax errors that prevented
its execution. The tasks were described as dicts rather than lists.
parent d5179b52
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@
become: true
tasks:
ipahost:
- ipahost:
ipaadmin_password: SomeADMINpassword
name: host01.exmaple.com
managedby_host: server.exmaple.com
......
......@@ -4,7 +4,7 @@
become: true
tasks:
ipahost:
- ipahost:
ipaadmin_password: SomeADMINpassword
name: host01.exmaple.com
managedby_host: server.exmaple.com
......
......@@ -4,7 +4,7 @@
become: true
tasks:
ipahost:
- ipahost:
ipaadmin_password: SomeADMINpassword
name: host01.exmaple.com
managedby_host: server.exmaple.com
......
......@@ -4,6 +4,7 @@
become: true
tasks:
- name: Ensure hosts manadegby_host is absent.
ipahost:
ipaadmin_password: SomeADMINpassword
hosts:
......
......@@ -4,6 +4,7 @@
become: true
tasks:
- name: Ensure hosts manadegby_host is absent.
ipahost:
ipaadmin_password: SomeADMINpassword
hosts:
......
......@@ -4,7 +4,7 @@
become: true
tasks:
ipahost:
- ipahost:
ipaadmin_password: SomeADMINpassword
hosts:
- name: host01.exmaple.com
......
......@@ -23,4 +23,3 @@
- name: Print generated random password for host02.example.com
debug:
var: ipahost.host["host02.example.com"].randompassword
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment