agrego tags skip_me

This commit is contained in:
Mauro Torrez 2019-08-25 17:47:25 -03:00
parent 08db9b047c
commit 4000384978

View File

@ -54,6 +54,7 @@
- name: "Entrada en cn=config para {{ domain.name }}"
# Cuando el dominio no es hijo de otro ya existente, crear entrada en cn=config
when: "super.dn == ddn"
tags: skip_me
block:
- name: "(aux) setear propiedades"
@ -253,6 +254,7 @@
bind_dn: "{{ rootdn }}"
bind_pw: "{{ rootpw }}"
server_uri: "ldap://localhost:{{ openldap_bind_port }}"
tags: skip_me
- name: "Usuario admin para {{ ddn }}"
ldap:
@ -266,6 +268,7 @@
bind_dn: "{{ rootdn }}"
bind_pw: "{{ rootpw }}"
server_uri: "ldap://localhost:{{ openldap_bind_port }}"
tags: skip_me
- name: "Usuario de replicacion para {{ ddn }}"
when:
@ -282,6 +285,7 @@
bind_dn: "{{ rootdn }}"
bind_pw: "{{ rootpw }}"
server_uri: "ldap://localhost:{{ openldap_bind_port }}"
tags: skip_me
- name: "OUs para {{ ddn }}"
ldap:
@ -295,6 +299,7 @@
bind_pw: "{{ rootpw }}"
server_uri: "ldap://localhost:{{ openldap_bind_port }}"
loop: "{{ domain.ou | default(openldap_default_domain_ous) }}"
tags: skip_me
- set_fact:
ldap_base_dn: "{{ lookup('vars', 'ldap_base_dn', default=ddn) }}"