smbldap-tools e Addons do SMBLDAP-TOOLS são scripts perl para gerenciar usuários e grupos
contas armazenadas em um diretório LDAP.
Por exemplo: smbldap-attribute é um script simples e poderoso. Este script pode adicionar / modificar / excluir qualquer atributo.
adicione atributo e valor (suporte a vários valores):
smbldap-attribute "uid=user1,dc=example,dc=com" "attribute:value"
smbldap-attribute "uid=user1" "attribute:value"
smbldap-attribute user1 "attribute:value"
smbldap-attribute -s "_" "uid=user1,dc=example,dc=com" "attribute_value"
modificar valor:
smbldap-attribute "uid=user1,dc=example,dc=com" "attribute:current:new"
smbldap-attribute "uid=user1" "attribute:current:new"
smbldap-attribute user1 "attribute:current:new"
smbldap-attribute -s "/" user1 "attribute/current/new"
excluir valor:
smbldap-attribute -d "uid=user1,dc=example,dc=com" "attribute:value"
smbldap-attribute -d "uid=user1" "attribute"
smbldap-attribute -d user1 "attribute"