Disabling a provisioning policy in ITIM 4.5.1 will “do things”. There are times, however, when I simply need to have it stop what it’s doing without triggering some sort of mass re-evaluation.
To disable:
ldapmodify -D cn=root -w password -h host -p 389 -f disable_myprovisioning_pol.txt
Where disable_myprovisioning_pol.txt contains:
dn: erglobalid=ERGLOBALID,ou=policies,erglobalid=00000000000000000000,o=myco,c=us
changetype: modify
replace: erenabled
erenabled: false
To enable:
ldapmodify -D cn=root -w password -h host -p 389 -f enable_myprovisioning_pol.txt
Where enable_myprovisioning_pol.txt contains:
dn: erglobalid=ERGLOBALID,ou=policies,erglobalid=00000000000000000000,o=myco,c=us
changetype: modify
replace: erenabled
erenabled: true
If you’re making an update to the policy (using the ITIM interface) be careful to NOT:
– Remove any memberships from the policy
– Modify any users (using TAM, ITIM or a ldapmodify)
re: ITIM 4.5.1