-
Notifications
You must be signed in to change notification settings - Fork 234
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ipaautomember: Resolve comments from review on #486
- Loading branch information
Showing
8 changed files
with
128 additions
and
96 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
- name: Automember group absent example | ||
hosts: ipaserver | ||
become: true | ||
tasks: | ||
- name: Ensure group automember rule admins is absent | ||
ipaautomember: | ||
ipaadmin_password: SomeADMINpassword | ||
name: admins | ||
automember_type: group | ||
state: absent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
- name: Automember group present example | ||
hosts: ipaserver | ||
become: true | ||
tasks: | ||
- name: Ensure group automember rule admins is present | ||
ipaautomember: | ||
ipaadmin_password: SomeADMINpassword | ||
name: admins | ||
automember_type: group | ||
state: present |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
- name: Automember hostgroup absent example | ||
hosts: ipaserver | ||
become: true | ||
tasks: | ||
- name: Ensure hostgroup automember rule ipaservers is absent | ||
ipaautomember: | ||
ipaadmin_password: SomeADMINpassword | ||
name: ipaservers | ||
automember_type: hostgroup | ||
state: absent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
- name: Automember hostgroup present example | ||
hosts: ipaserver | ||
become: true | ||
tasks: | ||
- name: Ensure hostgroup automember rule ipaservers is absent | ||
ipaautomember: | ||
ipaadmin_password: SomeADMINpassword | ||
name: ipaservers | ||
automember_type: hostgroup | ||
state: present |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters