Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 18.119.255.170
#!/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_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
|