From 97bb92b35bdcf90bf1ddf9ad814a3df39f29c0a3 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Wed, 7 Sep 2016 16:44:03 +0200 Subject: initial commit --- 30-timesyncd | 18 ++++++++++++++++++ Makefile | 2 ++ README.md | 4 ++++ 3 files changed, 24 insertions(+) create mode 100755 30-timesyncd create mode 100644 Makefile create mode 100644 README.md diff --git a/30-timesyncd b/30-timesyncd new file mode 100755 index 0000000..da0f193 --- /dev/null +++ b/30-timesyncd @@ -0,0 +1,18 @@ +#!/bin/sh + +INTERFACE="${1}" +STATUS="${2}" + +case "${STATUS}" in + up|dhcp4-change) + if [ -n "${DHCP4_NTP_SERVERS}" ]; then + mkdir -p /run/systemd/timesyncd.conf.d/ + echo "[Time]" > /run/systemd/timesyncd.conf.d/${INTERFACE}.conf + echo "NTP = ${DHCP4_NTP_SERVERS}" >> /run/systemd/timesyncd.conf.d/${INTERFACE}.conf + fi + ;; + down) + rm -f /run/systemd/timesyncd.conf.d/${INTERFACE}.conf + ;; +esac + diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..68f4730 --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +install: 30-timesyncd + install -D -m0755 30-timesyncd $(DESTDIR)/etc/NetworkManager/dispatcher.d/30-timesyncd diff --git a/README.md b/README.md new file mode 100644 index 0000000..4ff22f0 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +networkmanager-dispatcher-timesyncd +=================================== + +Networkmanager Dispatcher script for systemd-timesyncd -- cgit v1.2.3-54-g00ecf