/lib/systemd/system/adjtimex.service is in adjtimex 1.29-7.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | [Unit]
Description=the kernel time variables setting
DefaultDependencies=no
After=local-fs.target
Before=sysinit.target
ConditionPathExists=/etc/default/adjtimex
[Service]
Type=oneshot
Environment="TICK=10000" "FREQ=0"
EnvironmentFile=-/etc/default/adjtimex
ExecStart=/sbin/adjtimex -tick ${TICK} -frequency ${FREQ}
[Install]
WantedBy=sysinit.target
|