aboutsummaryrefslogtreecommitdiff
path: root/templates/check_samba_user
blob: 75cb4b58055e5994d6a263c19f29235742a0f57c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

# This script checks to see if a given user account exists on samba
# if so, it returns 0
# otherwise it returns 1

sudo /usr/bin/pdbedit -L | egrep -q "^$1:"
exists=$?

if [ $exists = 0 ]; then
	echo "'$1' is a samba user"	
else
	echo "no samba account matching '$1'"
fi

exit $exists