#%% begin initialize 
if [ ! -f /etc/ntp.conf ]; then
  mv /etc/ntp.conf.dist /etc/ntp.conf
fi
if ! id ntp >/dev/null 2>&1; then
  echo "Ntpd requires ntp user and group. Run following command"
  echo "  sudo groupadd -g 49 ntp"
  echo "  sudo useradd -u 49 -g ntp -s /bin/false ntp"
fi
#%% end
