* Indentation.
svn path=/nixos/trunk/; revision=11231
This commit is contained in:
parent
e32a8437d5
commit
2cc2831563
@ -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,8 +27,8 @@ 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
|
||||||
@ -47,6 +47,6 @@ start script
|
|||||||
end script
|
end script
|
||||||
|
|
||||||
respawn ${ntp}/bin/ntpd -n ${ntpFlags}
|
respawn ${ntp}/bin/ntpd -n ${ntpFlags}
|
||||||
";
|
'';
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user