You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
329 B
Bash
19 lines
329 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
. /usr/share/debconf/confmodule
|
|
|
|
PACKAGE=tt-rss-mysql
|
|
|
|
# restart webserver
|
|
db_input medium $PACKAGE/webserver || true
|
|
db_go || true
|
|
|
|
# dbconfig-common
|
|
if [ -f /usr/share/dbconfig-common/dpkg/config.mysql ]; then
|
|
. /usr/share/dbconfig-common/dpkg/config.mysql
|
|
dbc_first_version="1.3.1"
|
|
dbc_go $PACKAGE $@
|
|
fi
|
|
|