summaryrefslogtreecommitdiffstats
path: root/debian/systemd-timesyncd.postrm
blob: b333c6c3ae9444d866d011d7ce6ae29564f58006 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

case "$1" in
    purge)
        rm -rf /var/lib/systemd/timesync/
    ;;
esac

#DEBHELPER#