mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
Establish some consistency with extension logging. Some extensions use another format:
display_alert "message" "${EXTENSION}" "info"
These were *not* adapted to this new schema.
8 lines
241 B
Bash
8 lines
241 B
Bash
#
|
|
# Extension to manage network time synchronization with Chrony
|
|
#
|
|
function extension_prepare_config__install_chrony() {
|
|
display_alert "Extension: ${EXTENSION}: Adding extra package to image" "chrony" "info"
|
|
add_packages_to_image chrony
|
|
}
|