1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#!/bin/sh
# postinst script for textpattern
#
# see: dh_installdeb(1)
set -e
. /usr/share/debconf/confmodule
. /usr/share/dbconfig-common/dpkg/postinst
dbc_generate_include=template:/etc/sshproxy/mysql.ini
dbc_generate_include_args="-o template_infile=/usr/share/doc/sshproxy-backend-mysql/mysql.ini.sample"
dbc_generate_include_owner="sshproxy:sshproxy"
dbc_generate_include_perms="660"
dbc_dbuser=sshproxy
dbc_dbname=sshproxy
dbc_go sshproxy-backend-mysql $@
#DEBHELPER#
exit 0
|