add more stack traces, other minor changes
[automated-distro-installer] / debian-pxe-preseed
1 #!/bin/bash
2 # Copyright (C) 2016 Ian Kelling
3
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
18
19 x="$(readlink -f "$BASH_SOURCE")"; source "${x%/*}/bash-trace"
20
21 [[ $EUID == 0 ]] || exec sudo "$BASH_SOURCE" "$@"
22
23 src=$(readlink -f "${BASH_SOURCE%/*}")
24
25 e() { echo "$*"; "$@"; }
26
27 mount_dir=$(mktemp -d)
28
29 cleanup() { cd; umount -f $mount_dir; }
30 _errcatch_cleanup=cleanup
31 e mount -o users wrt:/mnt/usb $mount_dir
32
33
34 cd $mount_dir
35 e rm -rf debian-wheezy
36 mkdir debian-wheezy
37 cd debian-wheezy
38 e $src/debian-preseed "$@" # my script
39 cd ..
40 e rm -f tftpboot
41 e ln -s debian-wheezy tftpboot
42
43 cd /
44 e umount $mount_dir
45 e $src/pxe-server default plain # my script