summaryrefslogtreecommitdiff
path: root/community/openntpd/openntpd.install
blob: 99223f355f5b27c4cbb6f8b8fd9f9f57fc75ebbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
}

# vim: ts=2 sw=2 et ft=sh