blob: 563a39e999527893d831953a2f5b2bf90879051b (
plain) (
blame)
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
|
SHORT_OPTS=":vfdh"
LONG_OPTS="version,force,debug,help"
LOG_DIR="/tmp/pbmtk"
TMP_DIR=/tmp/openslx-iso
run_module_checks () {
if [ ! -z $1 ]; then
perror "Too many parameters. \n"
print_usage
exit 1
fi
if [ -z $(which genisoimage) ]; then
perror "'genisoimage' is missing (if you are on a debian/ubuntu system: apt-get install genisoimage)"
exit 1
fi
}
init_params () {
FORCE=0
DEBUG=0
}
print_usage() {
echo "Usage: $(basename $SELF) iso [OPTIONS]"
echo -e " -d --debug \t give more debug output"
echo -e " -f --force \t don't ask questions"
echo -e " -h --help \t print help"
echo -e " -v --version \t print version information"
}
read_params() {
getopt_start $@
eval set -- "$GETOPT_TEMP"
while true ; do
case "$1" in
-v|--version)
echo "OpenSLX PreBoot .. ($VERSION - $VDATE)."
exit 0
;;
-h|--help)
print_usage
exit 0
;;
-f|--force) pinfo "Disable user-interaction."; FORCE=1; shift ;;
-d|--debug) pinfo "Enabled debugmode."; DEBUG=1; unset_quiet; shift ;;
--) shift ; break ;;
*) perror "Internal error!" ; exit 1 ;;
esac
done
}
get_preboot_serials() {
pinfo "Retrieving Serials..."
unset_quiet
wget -qO- pbs2.mp.openslx.org/resource/getprebootserials/apikey/apikey_uni-freiburg | cat
set_quiet
}
run () {
set_quiet
get_preboot_serials
unset_quiet
}
|