/usr/share/sadms-2.0.15/conf/unconfig-winbind.sh is in sadms 2.0.15.repack-0ubuntu2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | #!/bin/bash
# bbou@ac-toulouse.fr
# 2005-06-26 11:21:17
# conf/unconfig-winbind.sh
### P A R A M S
# none
### I N C L U D E S
. ./_include.sh
### M O D I F I E D F I L E S ...
# none
### S T A R T
# S E R V I C E
echo "+stop winbind"
if ${SERVICESTATUS} ${WINBINDSERVICE} > /dev/null; then
${SERVICE} ${WINBINDSERVICE} stop > /dev/null
fi
# S E R V I C E A U T O S T A R T
echo "+disable ${WINBINDSERVICE} automatic startup"
${SERVICEREMOVE} ${WINBINDSERVICE} > /dev/null 2> /dev/null
exit 0
|