Files
server/var/lib/dpkg/info/x11-common.postrm
2026-01-07 20:52:11 +01:00

11 lines
329 B
Bash
Executable File

#!/bin/sh
set -e
# Automatically added by dh_installinit/13.14.1ubuntu5
if [ "$1" = "remove" ] && [ -x "/etc/init.d/x11-common" ] ; then
chmod -x "/etc/init.d/x11-common" >/dev/null || true
fi
if [ -z "${DPKG_ROOT:-}" ] && [ "$1" = "purge" ] ; then
update-rc.d x11-common remove >/dev/null
fi
# End automatically added section