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, 25 insertions, 0 deletions
diff --git a/abs/core/openntpd/openntpd.install b/abs/core/openntpd/openntpd.install
new file mode 100644
index 0000000..837e4a1
--- /dev/null
+++ b/abs/core/openntpd/openntpd.install
@@ -0,0 +1,25 @@
+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