ntp: do not remove user/group if updating, bumprev.
--HG-- extra : convert_revision : d00de5f24a0f01859971004f13c32aba3db2e9dc
This commit is contained in:
parent
90b3ae2174
commit
bb69ac6768
|
@ -3,8 +3,10 @@
|
|||
#
|
||||
case "${ACTION}" in
|
||||
pre)
|
||||
userdel ntpd 2>&1 >/dev/null
|
||||
[ $? -eq 0 ] && echo "Removed ntpd system user/group."
|
||||
if [ "$UPDATE" = "no" ]; then
|
||||
userdel ntpd 2>&1 >/dev/null
|
||||
[ $? -eq 0 ] && echo "Removed ntpd system user/group."
|
||||
fi
|
||||
;;
|
||||
post)
|
||||
;;
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
# Template file for 'ntp'
|
||||
pkgname=ntp
|
||||
version=4.2.4p8
|
||||
revision=1
|
||||
distfiles="http://archive.ntp.org/ntp4/$pkgname-$version.tar.gz"
|
||||
build_style=gnu_configure
|
||||
configure_args="--enable-linuxcaps --enable-getifaddrs=glibc
|
||||
|
|
Loading…
Reference in New Issue