mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
14 lines
509 B
Bash
14 lines
509 B
Bash
#
|
|
# Extension to manage network time synchronization with systemd-timesyncd
|
|
#
|
|
function add_host_dependencies__install_systemd-timesyncd() {
|
|
display_alert "Extension: ${EXTENSION}: Installing additional packages" "systemd-timesyncd" "info"
|
|
add_packages_to_image systemd-timesyncd
|
|
}
|
|
|
|
function pre_install_kernel_debs__configure_systemd-timesyncd() {
|
|
# Enable timesyncd
|
|
display_alert "Extension: ${EXTENSION}: Enabling systemd-timesyncd" "" "info"
|
|
chroot_sdcard systemctl enable systemd-timesyncd.service
|
|
}
|