mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
- Rename extensions with "net-*" prefix - Put the extensions into their own folder - Split off time sync packages into their own extensions to be able to be used separately - Put their config files into directories instead of using inline `cat <<- EOF >` - Move some other NetworkManager related stuff into the extension - Remove unneeded steps - Install iproute2 by default on all images (for the `ip` command)
8 lines
254 B
Bash
8 lines
254 B
Bash
#
|
|
# Extension to manage network time synchronization with Chrony
|
|
#
|
|
function add_host_dependencies__install_chrony() {
|
|
display_alert "Extension: ${EXTENSION}: Installing additional packages" "chrony" "info"
|
|
add_packages_to_rootfs chrony
|
|
}
|