mirror of
https://git.proxmox.com/git/systemd
synced 2025-12-25 17:57:59 +00:00
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
12 lines
110 B
Bash
12 lines
110 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
purge)
|
|
rm -rf /var/lib/systemd/timesync/
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|