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