blob: 2aa04629651be1f8069ec9643dec6027408b6b57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
post_install() {
/usr/bin/sh /usr/share/tango/db/check_and_create_db.sh
}
post_upgrade() {
/usr/bin/sh /usr/share/tango/db/check_and_create_db.sh
}
post_remove() {
echo "***************************************************"
echo ">>> tango-database was successfully removed but <<<"
echo ">>> The tango mariadb database was NOT removed! <<<"
echo "***************************************************"
}
|