25 lines
558 B
Plaintext
25 lines
558 B
Plaintext
|
#
|
||
|
# This script creates the ntpd system user/group.
|
||
|
#
|
||
|
|
||
|
case "${ACTION}" in
|
||
|
pre)
|
||
|
;;
|
||
|
post)
|
||
|
echo "Running ${PKGNAME}-${VERSION} post installation hooks..."
|
||
|
if ! getent group ntpd >/dev/null; then
|
||
|
groupadd -r ntpd 2>&1 >/dev/null
|
||
|
[ $? -ne 0 ] && exit $?
|
||
|
echo "Created ntpd system group."
|
||
|
fi
|
||
|
if ! getent passwd ntpd >/dev/null; then
|
||
|
useradd -c "Network Time Protocol Daemon" \
|
||
|
-d /var/chroot/ntpd \
|
||
|
-s /sbin/nologin -g ntpd -r ntpd && \
|
||
|
passwd -l ntpd 2>&1 >/dev/null
|
||
|
[ $? -ne 0 ] && exit $?
|
||
|
echo "Created ntpd system user."
|
||
|
fi
|
||
|
;;
|
||
|
esac
|