8378fd9d39
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/chrony#38e248d3375971d1b61e17b0daedf7537f98dc97
23 lines
505 B
Bash
23 lines
505 B
Bash
#!/bin/bash
|
|
|
|
CHRONY_SOURCEDIR=/run/chrony-dhcp
|
|
SERVERFILE=$CHRONY_SOURCEDIR/$interface.sources
|
|
|
|
chrony_config() {
|
|
rm -f "$SERVERFILE"
|
|
if [ "$PEERNTP" != "no" ]; then
|
|
mkdir -p $CHRONY_SOURCEDIR
|
|
for server in $new_ntp_servers; do
|
|
echo "server $server ${NTPSERVERARGS:-iburst}" >> "$SERVERFILE"
|
|
done
|
|
/usr/bin/chronyc reload sources > /dev/null 2>&1 || :
|
|
fi
|
|
}
|
|
|
|
chrony_restore() {
|
|
if [ -f "$SERVERFILE" ]; then
|
|
rm -f "$SERVERFILE"
|
|
/usr/bin/chronyc reload sources > /dev/null 2>&1 || :
|
|
fi
|
|
}
|