postinst is in docvert 4.0-7.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | #!/bin/bash
# postinst script for docvert
#
# see: dh_installdeb(1)
set -e
# summary of how this script can be called:
# * <postinst> `configure' <most-recently-configured-version>
# * <old-postinst> `abort-upgrade' <new version>
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
# <new-version>
# * <postinst> `abort-remove'
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
# <failed-install-package> <version> `removing'
# <conflicting-package> <version>
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package
SALT_FILE="/etc/docvert/salt"
function create_random_salt {
pwgen -s 64 1 > $SALT_FILE
chmod 600 $SALT_FILE
chown www-data:www-data $SALT_FILE
}
CONFIG_FILE="/etc/docvert/docvert.conf"
function create_default_config {
mkdir -p `dirname $CONFIG_FILE`
touch $CONFIG_FILE
chmod 644 $CONFIG_FILE
chown www-data:www-data $CONFIG_FILE
grep -q 'superUserPreference' $CONFIG_FILE || echo 'superUserPreference="setuid"' >> $CONFIG_FILE
grep -q 'doNotUseConverterpyodconverter' $CONFIG_FILE || echo 'doNotUseConverterpyodconverter="true"' >> $CONFIG_FILE
grep -q 'doNotUseConverterabiword' $CONFIG_FILE || echo 'doNotUseConverterabiword="true"' >> $CONFIG_FILE
grep -q 'doNotUseConverteropenofficeorg' $CONFIG_FILE || echo 'doNotUseConverteropenofficeorg="true"' >> $CONFIG_FILE
grep -q 'disallowNonOpenDocumentUploads' $CONFIG_FILE || echo 'disallowNonOpenDocumentUploads="true"' >> $CONFIG_FILE
grep -q 'disallowXVFB' $CONFIG_FILE || echo 'disallowXVFB="true"' >> $CONFIG_FILE
grep -q 'hideAdminOptionopenofficeorg' $CONFIG_FILE || echo 'hideAdminOptionopenofficeorg="true"' >> $CONFIG_FILE
grep -q 'hideAdminOptionabiword' $CONFIG_FILE || echo 'hideAdminOptionabiword="true"' >> $CONFIG_FILE
grep -q 'hideAdminOptionjodconverter' $CONFIG_FILE || echo 'hideAdminOptionjodconverter="true"' >> $CONFIG_FILE
grep -q 'hideAdminOptionpyodconverter' $CONFIG_FILE || echo 'hideAdminOptionpyodconverter="true"' >> $CONFIG_FILE
grep -q 'hideAdminSuperUserMethodUserInterface' $CONFIG_FILE || echo 'hideAdminSuperUserMethodUserInterface="true"' >> $CONFIG_FILE
grep -q 'hideAdminOptionOpenOfficeOrg' $CONFIG_FILE || echo 'hideAdminOptionOpenOfficeOrg="true"' >> $CONFIG_FILE
grep -q 'hideAdminRunAsUser' $CONFIG_FILE || echo 'hideAdminRunAsUser="true"' >> $CONFIG_FILE
grep -q 'hideAdminNonOpenDocumentUploads' $CONFIG_FILE || echo 'hideAdminNonOpenDocumentUploads="true"' >> $CONFIG_FILE
grep -q 'hideAdminOptionOpenOfficeOrgServer' $CONFIG_FILE || echo 'hideAdminOptionOpenOfficeOrgServer="true"' >> $CONFIG_FILE
}
case "$1" in
configure)
chown -R www-data:www-data /etc/docvert
chown -R www-data:www-data /var/lib/docvert/writable
create_default_config
[ -e $SALT_FILE ] || create_random_salt
rm -f /usr/share/docvert/core/lib/fckeditor
ln -s /usr/share/fckeditor /usr/share/docvert/core/lib/fckeditor
rm -f /usr/share/docvert/core/lib/pclzip-2-6
ln -s /usr/share/php/libphp-pclzip /usr/share/docvert/core/lib/pclzip-2-6
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
exit 0
|