K2LL33D SHELL

 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 : 104.21.89.46

your ip : 172.70.80.99

H O M E


Filename/usr/lib/tasksel/tasksel-debconf
Size1.21 kb
Permissionrwxr-xr-x
Ownerroot : root
Create time27-Apr-2025 09:52
Last modified04-Apr-2014 20:58
Last accessed05-Jul-2025 15:47
Actionsedit | rename | delete | download (gzip)
Viewtext | 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