Method: Puppet::Provider::Ldap#flush

Defined in:
lib/puppet/provider/ldap.rb

#flushObject

Apply our changes to ldap, yo.



72
73
74
75
76
77
78
79
# File 'lib/puppet/provider/ldap.rb', line 72

def flush
  # Just call the manager's update() method.
  @property_hash.delete(:groups)
  @ldap_properties.delete(:groups)
  manager.update(name, ldap_properties, properties)
  @property_hash.clear
  @ldap_properties.clear
end