HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ip-172-26-0-120 6.17.0-1009-aws #9~24.04.2-Ubuntu SMP Fri Mar 6 23:50:29 UTC 2026 x86_64
User: ubuntu (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: //usr/share/doc/dbconfig-mysql/examples/db-test-sqlite3-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.sqlite3 ]; then
    . /usr/share/dbconfig-common/dpkg/postrm.sqlite3
    dbc_go db-test-sqlite3 "$@"
fi

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

#DEBHELPER#