Your IP : 3.14.131.159


Current Path : /var/lib/dpkg/info/
Upload File :
Current File : /var/lib/dpkg/info/php-common.prerm

#!/bin/sh

set -e

if [ "$1" = "remove" -o "$1" = "purge" ]; then
    if dpkg-statoverride --list /var/lib/php/sessions >/dev/null; then
	dpkg-statoverride --remove /var/lib/php/sessions;
    fi
fi

# Automatically added by dh_installdeb/12.1.1ubuntu1~ubuntu18.04.1
dpkg-maintscript-helper rm_conffile /etc/apt/preferences.d/php-common.pref 2:84\~ php-common -- "$@"
# End automatically added section
# Automatically added by dh_systemd_start/12.1.1ubuntu1~ubuntu18.04.1
if [ -d /run/systemd/system ] && [ "$1" = remove ]; then
	deb-systemd-invoke stop 'phpsessionclean.service' >/dev/null || true
fi
# End automatically added section
# Automatically added by dh_systemd_start/12.1.1ubuntu1~ubuntu18.04.1
if [ -d /run/systemd/system ] && [ "$1" = remove ]; then
	deb-systemd-invoke stop 'phpsessionclean.timer' >/dev/null || true
fi
# End automatically added section


exit 0