DIR: /proc/1991111/root/usr/share/doc/dbconfig-mysql/examples/db-test-mysql-2.0/debian/ |
Current File : //proc/1991111/root/usr/share/doc/dbconfig-mysql/examples/db-test-mysql-2.0/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# |