* Indentation.

svn path=/nixos/trunk/; revision=11231
This commit is contained in:
Eelco Dolstra 2008-03-20 14:38:49 +00:00
parent e32a8437d5
commit 2cc2831563

View File

@ -6,11 +6,11 @@ let
ntpUser = "ntp"; ntpUser = "ntp";
config = writeText "ntp.conf" " config = writeText "ntp.conf" ''
driftfile ${stateDir}/ntp.drift driftfile ${stateDir}/ntp.drift
${toString (map (server: "server " + server + "\n") servers)} ${toString (map (server: "server " + server + "\n") servers)}
"; '';
ntpFlags = "-c ${config} -u ${ntpUser}:nogroup -i ${stateDir}"; ntpFlags = "-c ${config} -u ${ntpUser}:nogroup -i ${stateDir}";
@ -27,26 +27,26 @@ in
} }
]; ];
job = " job = ''
description \"NTP daemon\" description "NTP daemon"
start on ip-up start on ip-up
stop on ip-down stop on ip-down
stop on shutdown stop on shutdown
start script start script
mkdir -m 0755 -p ${stateDir} mkdir -m 0755 -p ${stateDir}
chown ${ntpUser} ${stateDir} chown ${ntpUser} ${stateDir}
# Needed to run ntpd as an unprivileged user. # Needed to run ntpd as an unprivileged user.
${modprobe}/sbin/modprobe capability || true ${modprobe}/sbin/modprobe capability || true
${ntp}/bin/ntpd -q -g ${ntpFlags} ${ntp}/bin/ntpd -q -g ${ntpFlags}
end script
respawn ${ntp}/bin/ntpd -n ${ntpFlags} end script
";
respawn ${ntp}/bin/ntpd -n ${ntpFlags}
'';
} }