b1f0282c6a
--HG-- extra : convert_revision : 5ecbdd2f519c0605978a7a2e3e503dae5bb7e99f
11 lines
177 B
Text
11 lines
177 B
Text
#
|
|
# This script removes the ntpd user/group.
|
|
#
|
|
case "${ACTION}" in
|
|
pre)
|
|
userdel ntpd 2>&1 >/dev/null
|
|
[ $? -eq 0 ] && echo "Removed ntpd system user/group."
|
|
;;
|
|
post)
|
|
;;
|
|
esac
|