Apache/2.4.7 (Ubuntu) Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) safemode : OFF MySQL: ON | Perl: ON | cURL: OFF | WGet: ON > / usr / lib / tasksel / | server ip : 172.67.156.115 your ip : 172.70.179.197 H O M E |
Filename | /usr/lib/tasksel/tasksel-debconf |
Size | 1.21 kb |
Permission | rwxr-xr-x |
Owner | root : root |
Create time | 27-Apr-2025 09:52 |
Last modified | 04-Apr-2014 20:58 |
Last accessed | 05-Jul-2025 15:47 |
Actions | edit | rename | delete | download (gzip) |
View | text | code | image |
#!/bin/sh
# because debconf sucks
. /usr/share/debconf/confmodule
set -e
# This is a bit nasty, but it lets us convert task names to short
# descriptions so that we can handle unseen preseeding correctly. We should
# probably just use debconf for all of tasksel instead, and then we could
# get rid of this nonsense.
if [ "$1" = --get ]; then
shift
tmpfile=$1
question=$2
db_get $question
echo "$RET" >$tmpfile
exit 0
elif [ "$1" = --set ]; then
shift
question=$1
value="$2"
db_set $question "$value"
exit 0
fi
tmpfile=$1
choices="$2"
choicestrans="$3"
defaults="$4"
question=$5
db_settitle tasksel/title
db_subst $question ORIGCHOICES "$choices"
db_subst $question CHOICES "$choicestrans"
# Allow tasksel/first to be preseeded. If it has a non-empty value or
# is marked as seen, then it must have been preseeded, and that
# overrides any defaults set by tasksel.
if [ "$question" = "tasksel/first" ]; then
db_get $question
value="$RET"
db_fget $question seen
if [ -z "$value" ] && [ "$RET" = false ]; then
db_set $question "$defaults"
fi
else
db_set $question "$defaults"
fi
db_input high $question || true
db_go # note: intentionally unguarded
db_fset $question seen false
db_get $question
echo "$RET" >$tmpfile
# because debconf sucks
. /usr/share/debconf/confmodule
set -e
# This is a bit nasty, but it lets us convert task names to short
# descriptions so that we can handle unseen preseeding correctly. We should
# probably just use debconf for all of tasksel instead, and then we could
# get rid of this nonsense.
if [ "$1" = --get ]; then
shift
tmpfile=$1
question=$2
db_get $question
echo "$RET" >$tmpfile
exit 0
elif [ "$1" = --set ]; then
shift
question=$1
value="$2"
db_set $question "$value"
exit 0
fi
tmpfile=$1
choices="$2"
choicestrans="$3"
defaults="$4"
question=$5
db_settitle tasksel/title
db_subst $question ORIGCHOICES "$choices"
db_subst $question CHOICES "$choicestrans"
# Allow tasksel/first to be preseeded. If it has a non-empty value or
# is marked as seen, then it must have been preseeded, and that
# overrides any defaults set by tasksel.
if [ "$question" = "tasksel/first" ]; then
db_get $question
value="$RET"
db_fget $question seen
if [ -z "$value" ] && [ "$RET" = false ]; then
db_set $question "$defaults"
fi
else
db_set $question "$defaults"
fi
db_input high $question || true
db_go # note: intentionally unguarded
db_fset $question seen false
db_get $question
echo "$RET" >$tmpfile