void-packages/srcpkgs/ntp/REMOVE

12 lines
177 B
Text
Raw Normal View History

#
# 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