12 lines
327 B
Plaintext
12 lines
327 B
Plaintext
|
#!/bin/sh -e
|
||
|
# config maintainer script for php-cerebrate
|
||
|
|
||
|
# source debconf stuff
|
||
|
. /usr/share/debconf/confmodule
|
||
|
|
||
|
# source dbconfig-common shell library, and call the hook function
|
||
|
if [ -f /usr/share/dbconfig-common/dpkg/config.mysql ]; then
|
||
|
. /usr/share/dbconfig-common/dpkg/config.mysql
|
||
|
dbc_go php-cerebrate "$@"
|
||
|
fi
|