vp-build/templates/ntp/REMOVE
Juan RP b1f0282c6a ntp: switch to OpenRC. Create ntpd user/group for chroot.
--HG--
extra : convert_revision : 5ecbdd2f519c0605978a7a2e3e503dae5bb7e99f
2009-05-10 17:52:04 +02:00

12 lines
177 B
Plaintext

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