summaryrefslogtreecommitdiffstats
path: root/debian/chrony.if-up
blob: 4cc07968daa5006c0fa927e77c66b5ed9d5f5d32 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

[ -x /usr/sbin/chronyd ] || exit 0

if [ -e /run/chrony/chronyd.pid ]; then
    chronyc onoffline > /dev/null 2>&1
fi

exit 0