HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/1991111/root/usr/share/doc/dbconfig-mysql/examples/db-test-mysql-2.1/debian/
Upload File :
Current File : //proc/1991111/root/usr/share/doc/dbconfig-mysql/examples/db-test-mysql-2.1/debian/postrm
#!/bin/sh

set -e
#set -x

if [ -f /usr/share/debconf/confmodule ]; then
    . /usr/share/debconf/confmodule
fi
if [ -f /usr/share/dbconfig-common/dpkg/postrm.mysql ]; then
    . /usr/share/dbconfig-common/dpkg/postrm.mysql
    dbc_go db-test-mysql "$@"
fi


if [ "$1" = "purge" ]; then
	rm -f /etc/db-test-mysql/debian-db.php
	if command -v ucf >/dev/null; then
		ucf --purge /etc/db-test-mysql/debian-db.php
		ucfr --purge db-test-mysql /etc/db-test-mysql/debian-db.php
	fi
fi

#DEBHELPER#