summaryrefslogtreecommitdiffstats
path: root/roles/ipa/server
diff options
context:
space:
mode:
authorPatrick Uiterwijk <puiterwijk@redhat.com>2016-11-28 11:11:09 +0000
committerPatrick Uiterwijk <puiterwijk@redhat.com>2016-11-28 11:11:09 +0000
commitdfade0668cacffe25cfb1a122ca865a4e35a6f3e (patch)
treeb1ae392e489c1ae5e523e17d2453f8e4b406debb /roles/ipa/server
parentf8f708eb36c005472e1f557148d312e6f2ea0921 (diff)
downloadansible-dfade0668cacffe25cfb1a122ca865a4e35a6f3e.tar.gz
ansible-dfade0668cacffe25cfb1a122ca865a4e35a6f3e.tar.xz
ansible-dfade0668cacffe25cfb1a122ca865a4e35a6f3e.zip
Add tags
Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
Diffstat (limited to 'roles/ipa/server')
-rw-r--r--roles/ipa/server/tasks/main.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/roles/ipa/server/tasks/main.yml b/roles/ipa/server/tasks/main.yml
index 7372fd83b..5740dde9c 100644
--- a/roles/ipa/server/tasks/main.yml
+++ b/roles/ipa/server/tasks/main.yml
@@ -205,6 +205,9 @@
with_items:
- grant_fas_sync
when: inventory_hostname.startswith("ipa01")
+ tags:
+ - ipa/server
+ - config
register: apply_output
changed_when: "'Type or value exists' not in apply_output.stderr"
failed_when: "'Type or value exists' not in apply_output.stderr and 'modifying entry' not in apply_output.stdout"
@@ -213,6 +216,9 @@
- name: Grant access to replication status
command: ldapmodify -Y EXTERNAL -H ldapi://%2fvar%2frun%2fslapd-FEDORAPROJECT-ORG.socket
-f /root/ldif/grant_anonymous_replication_view.ldif
+ tags:
+ - ipa/server
+ - config
register: grant_repl_status_output
changed_when: "'Type or value exists' not in grant_repl_status_output.stderr"
failed_when: "'Type or value exists' not in grant_repl_status_output.stderr and 'modifying entry' not in grant_repl_status_output.stdout"