systemd/debian/systemd-timesyncd.postrm
Balint Reczey d6483013d5 Ship systemd-timesyncd in a separate package
The new systemd-timesyncd package conflicting with other NTP-related
packages resolves the problems arising when installing systemd-timesyncd
and other NTP servers on the same system.

Co-authored-by: Michael Biebl <biebl@debian.org>
LP: #1849156
Closes: #805927, #947936
2020-04-02 16:36:09 +02:00

12 lines
110 B
Bash

#!/bin/sh
set -e
case "$1" in
purge)
rm -rf /var/lib/systemd/timesync/
;;
esac
#DEBHELPER#