summaryrefslogtreecommitdiffstats
path: root/abs/core/openntpd/openntpd.install
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core/openntpd/openntpd.install')
-rw-r--r--abs/core/openntpd/openntpd.install25
1 files changed, 0 insertions, 25 deletions
diff --git a/abs/core/openntpd/openntpd.install b/abs/core/openntpd/openntpd.install
deleted file mode 100644
index 837e4a1..0000000
--- a/abs/core/openntpd/openntpd.install
+++ /dev/null
@@ -1,25 +0,0 @@
-post_install() {
- if [ ! "`grep ^ntp /etc/group`" ]; then
- echo "adding new group: ntp"
- /usr/sbin/groupadd -g 87 ntp
- fi
-
- if [ ! "`grep ^ntp /etc/passwd`" ]; then
- echo "adding new user: ntp"
- /usr/sbin/useradd -g ntp -u 87 -d /var/empty -s /bin/false -c 'Network Time Protocol' ntp
- fi
-}
-
-post_upgrade() {
- post_install $1
-}
-
-pre_remove() {
- /bin/true
-}
-
-post_remove() {
- /bin/true
-}
-
-# vim: ts=2 sw=2 et ft=sh