diff options
author | Michael Hanson <hansonorders@verizon.net> | 2011-02-09 03:52:06 (GMT) |
---|---|---|
committer | Michael Hanson <hansonorders@verizon.net> | 2011-02-09 03:52:06 (GMT) |
commit | b516ea7067d5f1193476dedc5dad7d82008446a1 (patch) | |
tree | fed3890675d6719eb31b3ecf6003799d1896bb28 /abs/core/openntpd/openntpd.install | |
parent | 4a2252c3904af183ea6b21f3dce5c41b1978fed8 (diff) | |
download | linhes_pkgbuild-b516ea7067d5f1193476dedc5dad7d82008446a1.zip linhes_pkgbuild-b516ea7067d5f1193476dedc5dad7d82008446a1.tar.gz linhes_pkgbuild-b516ea7067d5f1193476dedc5dad7d82008446a1.tar.bz2 |
openntpd: remove this as it's not adjusting the clock.
Diffstat (limited to 'abs/core/openntpd/openntpd.install')
-rw-r--r-- | abs/core/openntpd/openntpd.install | 25 |
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 |