postinst is in request-tracker3.8 3.8.11-1.
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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 | #!/bin/sh
set -e
branch_version=3.8
branch_priority=250
warn() {
fmt -60 | sed 's/^/**WARNING** /' 1>&2
}
warn <<eof
If you are using mod_perl or any form of persistent perl process
such as FastCGI or SpeedyCGI, you will need to restart your web
server and any persistent processes now.
eof
find /var/cache/request-tracker$branch_version/mason_data -type f -print0 |xargs -r0 rm -f
alts() {
for x in "/usr/bin/rt-crontool 1" "/usr/sbin/rt-setup-database 8" \
"/usr/sbin/rt-dump-database 8" "/usr/sbin/update-rt-siteconfig 8" \
"/usr/sbin/rt-email-digest 8" "/usr/sbin/rt-email-dashboards 8" \
"/usr/sbin/rt-clean-sessions 8" "/usr/sbin/rt-shredder 8" \
"/usr/sbin/rt-email-group-admin 8" \
"/usr/sbin/rt-attributes-viewer 8" "/usr/sbin/rt-validator 8"; do
set -- $x; alt=$1; manext=$2; base=`basename $alt`
update-alternatives \
--install $alt $base $alt-$branch_version $branch_priority \
--slave /usr/share/man/man$manext/$base.$manext.gz \
$base.$manext.gz \
/usr/share/man/man$manext/$base-$branch_version.$manext.gz
done
}
create_debconf_snippet () {
# create a configuration snippet from the debconf database
# and handle it with ucf
tfile=$(mktemp -t request-tracker3.8-config.XXXXXXXX) || exit 1
for i in rtname organization correspondaddress commentaddress \
webpath webbaseurl
do
db_get "request-tracker3.8/$i"
echo "$i=$RET"
done | /usr/share/request-tracker3.8/debian/write-siteconfig \
/usr/share/request-tracker3.8/debian/siteconfig.template > $tfile
ucf --debconf-ok $tfile /etc/request-tracker3.8/RT_SiteConfig.d/50-debconf
rm $tfile
}
run_dbconfig () {
dbc_generate_include=template:/etc/request-tracker3.8/RT_SiteConfig.d/51-dbconfig-common
dbc_generate_include_args="-o template_infile=/usr/share/request-tracker3.8/debian/dbconfig.template"
if [ "$HANDLE_PERMISSIONS" = "true" ]
then
# hint the SQLite code for the database file permissions
dbc_dbfile_owner="root:www-data"
dbc_dbfile_perms=0660
fi
ROOT_PASSWORD="password"
db_get request-tracker3.8/dbconfig-install
DBC_INSTALL=$RET
if [ -n "$2" ]; then
DBC_INSTALL="false"
fi
db_get request-tracker3.8/dbconfig-reinstall
DBC_REINSTALL=$RET
if [ "$DBC_INSTALL" = "true" -o "$DBC_REINSTALL" = "true" ]; then
db_get request-tracker3.8/initial-root-password
if [ -n "$RET" ]; then
ROOT_PASSWORD="$RET"
fi
fi
ROOT_PASSWORD_FILE=`mktemp`
export ROOT_PASSWORD_FILE
echo $ROOT_PASSWORD > $ROOT_PASSWORD_FILE
unset ROOT_PASSWORD
. /usr/share/dbconfig-common/dpkg/postinst
dbc_go request-tracker3.8 $@
if [ "$DBC_INSTALL" = "true" -o "$DBC_REINSTALL" = "true" ]; then
db_reset request-tracker3.8/initial-root-password
db_fset request-tracker3.8/initial-root-password seen true
rm -f $ROOT_PASSWORD_FILE
fi
}
maybe_handle_permissions () {
if [ "$HANDLE_PERMISSIONS" = "true" ]
then
chown root:www-data /etc/request-tracker3.8/RT_SiteConfig.pm
chmod 640 /etc/request-tracker3.8/RT_SiteConfig.pm
fi
}
ucf_register () {
# Add the generated files into the ucf registry
if which ucfr >/dev/null 2>&1
then
ucfr request-tracker3.8 /etc/request-tracker3.8/RT_SiteConfig.d/50-debconf
ucfr request-tracker3.8 /etc/request-tracker3.8/RT_SiteConfig.pm
ucfr request-tracker3.8 /etc/cron.d/request-tracker38
# this should probably be registered by dbconfig-generate-include,
# but ucfr is idempotent so it doesn't hurt here anyway.
ucfr request-tracker3.8 /etc/request-tracker3.8/RT_SiteConfig.d/51-dbconfig-common
fi
}
remove_old_config () {
md5sum_file=/usr/share/request-tracker3.8/debian/old_etc.md5sum
if md5sum --check --status $md5sum_file; then
perl -ane 'unlink $F[1]' $md5sum_file
rmdir /etc/request-tracker3.8/upgrade/* || true
rmdir /etc/request-tracker3.8/upgrade || true
fi
}
setup_cronjobs () {
tfile=$(mktemp -t request-tracker3.8-config.XXXXXXXX) || exit 1
if [ "$INSTALL_CRONJOBS" = "true" ]
then
cat > $tfile <<EOF
0 0 * * * www-data [ -x /usr/sbin/rt-email-digest-3.8 ] && /usr/sbin/rt-email-digest-3.8 -m daily
0 0 * * 0 www-data [ -x /usr/sbin/rt-email-digest-3.8 ] && /usr/sbin/rt-email-digest-3.8 -m weekly
0 * * * * www-data [ -x /usr/sbin/rt-email-dashboards-3.8 ] && /usr/sbin/rt-email-dashboards-3.8
EOF
else
cat > $tfile <<EOF
#0 0 * * * www-data [ -x /usr/sbin/rt-email-digest-3.8 ] && /usr/sbin/rt-email-digest-3.8 -m daily
#0 0 * * 0 www-data [ -x /usr/sbin/rt-email-digest-3.8 ] && /usr/sbin/rt-email-digest-3.8 -m weekly
#0 * * * * www-data [ -x /usr/sbin/rt-email-dashboards-3.8 ] && /usr/sbin/rt-email-dashboards-3.8
EOF
fi
mkdir -p /etc/cron.d
if [ -f /etc/cron.d/request-tracker3.8 ]; then
mv /etc/cron.d/request-tracker3.8 /etc/cron.d/request-tracker38
ucf --purge /etc/cron.d/request-tracker3.8
ucfr --purge request-tracker3.8 /etc/cron.d/request-tracker3.8
fi
ucf --debconf-ok $tfile /etc/cron.d/request-tracker38
rm $tfile
}
fix_vulnerable_passwords() {
if [ "$1" = "configure" ] && [ -n "$2" ] && \
dpkg --compare-versions "$2" lt 3.8.8-7
then
if su -c "/usr/share/request-tracker3.8/etc/upgrade/vulnerable-passwords --fix" www-data; then
echo "vulnerable-passwords upgrade script invoked successfully on upgrade"
else
echo "vulnerable-passwords upgrade script exited with an error but the"
echo "package post-installation will continue. We recommend that"
echo "you check the above error and take corrective action to"
echo "ensure the privacy of your user's passwords."
fi
fi
}
# The actual work starts here
. /usr/share/debconf/confmodule
# this is used for the SiteConfig.pm file and the possible SQLite database file
db_get request-tracker3.8/handle-siteconfig-permissions
HANDLE_PERMISSIONS="$RET"
db_get request-tracker3.8/install-cronjobs
INSTALL_CRONJOBS="$RET"
create_debconf_snippet
run_dbconfig $@
# the snippets should be ready, update the actual configuration
update-rt-siteconfig-3.8
maybe_handle_permissions
setup_cronjobs
ucf_register
fix_vulnerable_passwords $@
case "$1" in
configure)
alts
if dpkg --compare-versions "$2" le-nl "3.8.2-1~experimental1"; then
remove_old_config
fi
;;
abort-upgrade)
alts
;;
esac
# Automatically added by dh_usrlocal
if [ "$1" = configure ]; then
(
while read line; do
set -- $line
dir="$1"; mode="$2"; user="$3"; group="$4"
if [ ! -e "$dir" ]; then
if mkdir "$dir" 2>/dev/null; then
chown "$user":"$group" "$dir"
chmod "$mode" "$dir"
fi
fi
done
) << DATA
/usr/local/share 2775 root staff
/usr/local/share/request-tracker3.8 2775 root staff
/usr/local/share/request-tracker3.8/html 2775 root staff
/usr/local/share/request-tracker3.8/lib 2775 root staff
/usr/local/share/request-tracker3.8/po 2775 root staff
/usr/local/share/request-tracker3.8/plugins 2775 root staff
DATA
fi
# End automatically added section
# Automatically added by dh_installinit
if [ -x "/etc/init.d/request-tracker3.8" ]; then
if [ ! -e "/etc/init/request-tracker3.8.conf" ]; then
update-rc.d request-tracker3.8 defaults >/dev/null
fi
invoke-rc.d request-tracker3.8 start || exit $?
fi
# End automatically added section
|