config 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 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 | #!/bin/sh
set -e
write_readconfig_script ()
{
# this Perl script is embedded here because the .config
# will be run before the new version is unpacked, so we
# can't ship the script in the .deb
READ_CONFIG_SCRIPT=$(mktemp -t request-tracker3.8-readconfig.XXXXXXXX) || exit 1
chmod 755 $READ_CONFIG_SCRIPT
cat > $READ_CONFIG_SCRIPT <<'EOF'
#!/usr/bin/perl -w
use strict;
no strict 'refs';
# This script reads in the current RT configuration
# and outputs shell code that sets corresponding shell
# variables.
#
# It is used by the maintainer scripts of request-tracker3.8
# to get default values for debconf prompts.
#
# When invoked without any options, the script will output
# dbconfig-common related variables for use by dbconfig-load-include(1).
#
# When invoked with the '-s' option, the script will output
# the rest of the variables needed used by the maintainer scripts.
# Copyright 2007 Niko Tyni <ntyni@iki.fi>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version. You may also can
# redistribute it and/or modify it under the terms of the Perl
# Artistic License.
use Getopt::Std;
my %opts;
getopts('s', \%opts) or die("Usage: $0 [-s]");
my $dbconfig_mode = not exists $opts{s};
# Note the order; if somebody has overridden RT.pm,
# we should honor that
use lib "/usr/local/share/request-tracker3.8/lib";
use lib "/usr/share/request-tracker3.8/lib";
use RT;
# the correspondence between the RT variables and
# their names in the shell
my %site_names = (
rtname => "RT_SITE_rtname",
Organization => "RT_SITE_organization",
CorrespondAddress => "RT_SITE_correspondaddress",
CommentAddress => "RT_SITE_commentaddress",
WebPath => "RT_SITE_webpath",
WebBaseURL => "RT_SITE_webbaseurl",
);
# the special dbconfig-load-include(1) variables
my %db_names = (
DatabaseType => "dbc_dbtype",
DatabaseHost => "dbc_dbserver",
DatabaseUser => "dbc_dbuser",
DatabasePassword => "dbc_dbpass",
DatabaseName => "dbc_dbname",
DatabasePort => "dbc_dbport",
);
# map from dbconfig-common database types to their names as known by RT
my %typemap = reverse (
mysql => 'mysql',
pgsql => 'Pg',
sqlite3 => 'SQLite',
);
# Read in the configuration
RT::LoadConfig();
# and output the relevant parts of it
if ($dbconfig_mode) {
for my $var (keys %db_names) {
my $val = ${"RT::$var"} || "";
my $varname = $db_names{$var};
$val = $typemap{$val} || "" if $varname eq "dbc_dbtype";
print qq($varname="$val"\n);
}
} else {
for my $var (sort keys %site_names) {
my $val = ${"RT::$var"} || "EMPTY_PLACEHOLDER_VALUE";
my $varname = $site_names{$var};
print qq($varname="$val"\n);
}
}
EOF
# end of the embedded Perl script
} # write_readconfig_script()
# start of the actual command flow
# check if there's an existing installation that was never
# configured manually at all
# the md5sum is the same for all versions between Lenny (3.8.0-1)
# and current unstable (3.8.0-1)
if [ -e /etc/request-tracker3.8/RT_SiteConfig.pm ] \
&& md5sum --check --status <<EOF
5e5ac60f5e5d364d1d987a087a0581bd /etc/request-tracker3.8/RT_SiteConfig.pm
EOF
then
IS_UNCONFIGURED=true
else
IS_UNCONFIGURED=false
fi
# source debconf library
. /usr/share/debconf/confmodule
db_version 2.0
db_capb backup
# sane startup defaults
RT_SITE_DEFAULT_webpath=/rt
RT_SITE_DEFAULT_webbaseurl=http://$(hostname -f)
RT_SITE_DEFAULT_rtname=rt.$(hostname -f)
RT_SITE_DEFAULT_organization=$(hostname -f)
RT_SITE_DEFAULT_correspondaddress="rt@$(hostname -f)"
# we always create this to be on the safe side
# from now on, $READ_CONFIG_SCRIPT is set
write_readconfig_script
# is this an old installation?
if [ -e /etc/request-tracker3.8/RT_SiteConfig.pm ] && ! $IS_UNCONFIGURED
then
if [ "$1" = "configure" ] && [ ! -f /usr/share/request-tracker3.8/lib/RT.pm ]
then
# it's an old installation, but not unpacked, ie. it was removed
# but not purged in the meantime
# the only sane thing to do is to exit now and retry when we're
# re-run from the postinst script
echo "request-tracker3.8.config: cannot read the old configuration file yet, postponing configuration." 1>&2
rm $READ_CONFIG_SCRIPT
exit 0
fi
if [ ! -x "$READ_CONFIG_SCRIPT" ]
then
echo "Creating temporary script for loading old configuration failed." 1>&2
exit 1
fi
# read in the existing configuration for default values
eval $($READ_CONFIG_SCRIPT -s)
# are we expected to handle the configuration file permissions?
# if this is an old installation but the permissions aren't what
# we expect, we don't want to handle them
if [ "root:www-data" != \
$(stat -c %U:%G /etc/request-tracker3.8/RT_SiteConfig.pm) ] \
|| [ "640" != \
$(stat -c %a /etc/request-tracker3.8/RT_SiteConfig.pm) ]
then
db_set request-tracker3.8/handle-siteconfig-permissions false
fi
fi
# now, default to handling the configuration file permissions
db_get request-tracker3.8/handle-siteconfig-permissions
if [ -z "$RET" ]
then
db_set request-tracker3.8/handle-siteconfig-permissions true
fi
# override the debconf database with the existing configuration
for i in rtname organization webpath webbaseurl \
correspondaddress commentaddress
do
unset value default
eval value=\"$(echo \${RT_SITE_$i})\"
eval default=\"$(echo \${RT_SITE_DEFAULT_$i})\"
if [ -n "$value" ]; then
if [ "$value" = "EMPTY_PLACEHOLDER_VALUE" ]; then
value="";
fi;
db_set request-tracker3.8/$i "${value}"
# as the value was set in the configuration file,
# mark the question as seen
db_fset request-tracker3.8/$i seen true
else
db_get request-tracker3.8/$i
if [ -z "$RET" ]; then
db_set request-tracker3.8/$i "${default}"
fi
fi
done
# ask the questions
STATE=1
set +e
while true
do
case "$STATE" in
1)
db_input high request-tracker3.8/rtname
;;
2)
db_input medium request-tracker3.8/organization
;;
3)
db_input high request-tracker3.8/handle-siteconfig-permissions
;;
4)
# This should possibly be in rt3.8-apache2
db_input medium request-tracker3.8/webbaseurl
;;
5)
# This should possibly be in rt3.8-apache2
db_input medium request-tracker3.8/webpath
;;
6)
# This should possibly be in rt3.8-clients
db_input medium request-tracker3.8/correspondaddress
;;
7)
db_get request-tracker3.8/commentaddress
if [ -z "$RET" ]
then
# default to the correspond address with -comment appended
db_get request-tracker3.8/correspondaddress
ADDRESS="$(echo "$RET" | sed s/@/-comment@/)"
db_set request-tracker3.8/commentaddress "$ADDRESS"
fi
db_input medium request-tracker3.8/commentaddress
;;
8)
db_input medium request-tracker3.8/install-cronjobs
;;
*)
break # exit the 'while' loop
;;
esac
if db_go
then
STATE=$(($STATE + 1))
else
STATE=$(($STATE - 1))
fi
done
if [ $STATE -eq 0 ]
then
# user backed up from the first question
# leave the package unconfigured
exit 10
fi
set -e
# source dbconfig-common library
if [ -f /usr/share/dbconfig-common/dpkg/config ]; then
# supported database types
# we only take the installed rt3.8-db-* packages into
# account on new installs or upgrades from an unconfigured state
if [ -z "$2" ] || $IS_UNCONFIGURED
then
dbc_dbtypes=""
for dbtype in sqlite3 pgsql mysql
do
case "$dbtype" in
mysql)
pkg=rt3.8-db-mysql
;;
pgsql)
pkg=rt3.8-db-postgresql
;;
sqlite3)
pkg=rt3.8-db-sqlite
;;
esac
if dpkg-query -W -f='${Status}\n' $pkg 2>/dev/null | \
grep -q '^install \| installed$' || \
( db_get ${pkg}/available && [ "$RET" = "true" ] ); then
dbc_dbtypes="${dbc_dbtypes}, $dbtype"
fi
dbc_dbtypes=$(echo $dbc_dbtypes | sed 's/^, //')
done
else
dbc_dbtypes="sqlite3, pgsql, mysql"
fi
if [ -z "$dbc_dbtypes" ]
then
# no rt3.8-db-* packages preconfigured yet
#
# either apt feeds the list to dpkg-preconfigure in the
# wrong order (unlikely), or dpkg-preconfigure was called
# manually
#
# in either case, the only sane thing to do is to exit now and
# retry when we're re-run from the postinst script
echo "request-tracker3.8.config: no rt3.8-db-* package is being installed? postponing configuration." 1>&2
rm $READ_CONFIG_SCRIPT
exit 0
fi
# we want a password that can be put in the configuration file
dbc_authmethod_user="password"
# some default values
dbc_dbuser="rtuser"
dbc_dbname="rtdb"
# this makes dbconfig-common import an existing configuration when
# upgrading from a pre-dbconfig-common version
#
# note that we're calling the same script as the general upgrade logic
# above, but without the '-s' argument, so that the script will
# return the database related configuration
if ! $IS_UNCONFIGURED
then
dbc_load_include=exec:$READ_CONFIG_SCRIPT
fi
# all ready, let's go
. /usr/share/dbconfig-common/dpkg/config
dbc_go request-tracker3.8 $@
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
while true; do
if db_input high request-tracker3.8/initial-root-password; then
db_go
else
if [ $? -eq 30 ]; then
break
else
exit $?
fi
fi
db_get request-tracker3.8/initial-root-password
if [ -n "$RET" ]; then
PW_LENGTH=$(expr length "$RET")
# This is only the default $MinimumPasswordLength which could
# in theory be overridden by the user by this point, but we'll
# ignore this edge case for now; it'll be trapped later.
# Let's just say that we don't support passwords shorter than
# this
if [ "$PW_LENGTH" -ge 5 ]; then
break
fi
fi
done
fi
fi
rm $READ_CONFIG_SCRIPT
if [ -e /var/lib/dbconfig-common/sqlite3/request-tracker3.8/_DBC_DBNAME_ ]; then
db_input high request-tracker3.8/warn-sqlite-file || true
db_go
fi
|