Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
thread-self
/
root
/
var
/
lib
/
dpkg
/
info
/
//proc/thread-self/root/var/lib/dpkg/info/rsync.postrm
#!/bin/sh -e # postrm for rsync if [ "$1" = "purge" ] ; then update-rc.d rsync remove >/dev/null fi ## from /usr/share/debhelper/autoscripts/postrm-systemd : if [ "$1" = "remove" ]; then if [ -x "/usr/bin/deb-systemd-helper" ]; then deb-systemd-helper mask rsync.service >/dev/null fi fi if [ "$1" = "purge" ]; then if [ -x "/usr/bin/deb-systemd-helper" ]; then deb-systemd-helper purge rsync.service >/dev/null deb-systemd-helper unmask rsync.service >/dev/null fi fi exit 0