Sophie

Sophie

distrib > Mageia > 7 > armv7hl > by-pkgid > 809298090c6fa8d9a9a784d314d04e94 > files > 6

chrony-3.4-2.1.mga7.src.rpm

#!/bin/bash

SERVERFILE=$SAVEDIR/chrony.servers.$interface

chrony_config() {
	rm -f $SERVERFILE
	if [ "$PEERNTP" != "no" ]; then
		for server in $new_ntp_servers; do
			echo "$server ${NTPSERVERARGS:-iburst}" >> $SERVERFILE
		done
		/usr/libexec/chrony-helper update-daemon || :
	fi
}

chrony_restore() {
	if [ -f $SERVERFILE ]; then
		rm -f $SERVERFILE
		/usr/libexec/chrony-helper update-daemon || :
	fi
}