add task to kill systemd-timesyncd and enable chrony
Some checks are pending
continuous-integration/laminar-eldarion Build failed with exit code 123 after 3 seconds
Some checks are pending
continuous-integration/laminar-eldarion Build failed with exit code 123 after 3 seconds
....otherwise DietPi has issues if we ever want to use dietpi-software it seems
This commit is contained in:
parent
548588e069
commit
5a5309e23a
2 changed files with 14 additions and 0 deletions
3
src/steps-config/100-chrony.sh
Executable file
3
src/steps-config/100-chrony.sh
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
queue_apt_install "chrony";
|
11
src/steps-postinstall/100-chrony.sh
Executable file
11
src/steps-postinstall/100-chrony.sh
Executable file
|
@ -0,0 +1,11 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
task_begin "Stopping systemd-timesyncd";
|
||||||
|
systemctl stop systemd-timesyncd
|
||||||
|
systemctl disable systemd-timesyncd
|
||||||
|
systemctl mask systemd-timesyncd
|
||||||
|
task_end 0;
|
||||||
|
|
||||||
|
task_begin "Starting and enabling chrony";
|
||||||
|
systemctl enable --now chrony
|
||||||
|
task_end "$?";
|
Loading…
Reference in a new issue