Files
build/extensions/network/net-chrony.sh
ColorfulRhino cc59d8af9e extensions: Add "Extension: ${EXTENSION}: " prefix to some extension logs
Establish some consistency with extension logging. Some extensions use another format:
display_alert "message" "${EXTENSION}" "info"

These were *not* adapted to this new schema.
2024-07-18 12:30:11 +02:00

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
}