File: chrony.if-post-down

package info (click to toggle)
chrony 4.8-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,784 kB
  • sloc: ansic: 38,349; sh: 5,833; yacc: 862; makefile: 232
file content (11 lines) | stat: -rw-r--r-- 145 bytes parent folder | download | duplicates (10)
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