jumpserver/userdel.sh

21 lines
521 B
Bash
Raw Normal View History

2014-08-14 09:22:25 +00:00
#!/bin/bash
username=$1
password=$2
cwd (){
dir=$0
dirname $dir
}
dir=$(cwd)
. ${dir}/shell.conf
id $username &> /dev/null
if [ $? == '0' ];then
userdel -r $username
2014-08-15 07:43:39 +00:00
#ssh -p $host2_port $host2 "userdel -r $username"
2014-08-14 09:22:25 +00:00
else
echo "$username is not exist."
fi
ldapdelete -x -h $host -D "cn=admin,dc=$domain,dc=$suffix" -w $ldapassword "uid=$username,ou=People,dc=$domain,dc=$suffix"
ldapdelete -x -h $host -D "cn=admin,dc=$domain,dc=$suffix" -w $ldapassword "cn=$username,ou=Group,dc=$domain,dc=$suffix"