1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 21:22:40 +00:00
Arsse/dist/debian/arsse.postinst

26 lines
635 B
Text
Raw Normal View History

2021-07-07 12:22:19 +00:00
#!/bin/sh
set -e
. /usr/share/debconf/confmodule
2021-07-07 19:24:45 +00:00
# Set up dbconfig-common
2021-07-07 12:22:19 +00:00
if test -f /usr/share/dbconfig-common/dpkg/postinst; then
2021-07-07 19:24:45 +00:00
. /usr/share/dbconfig-common/dpkg/postinst
dbc_generate_include_owner="root:www-data"
dbc_generate_include_perms="0640"
dbc_generate_include="php:/var/lib/arsse/dbconfig.inc"
dbc_pgsql_createdb_encoding="UTF8' lc_collate='C"
dbc_mysql_createdb_encoding="UTF8"
dbc_dbfile_owner="root:www-data"
dbc_dbfile_perms="0660"
dbc_go arsse "$@"
2021-07-07 12:22:19 +00:00
fi
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0