Merge branch 'upstream'
[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 # WARNING: outdated! needs docs and update to debian-stretch
20
21 x="$(readlink -f "$BASH_SOURCE")"; source "${x%/*}/bash-trace"
22
23 [[ $EUID == 0 ]] || exec sudo "$BASH_SOURCE" "$@"
24
25 src=$(readlink -f "${BASH_SOURCE%/*}")
26
27 e() { echo "$*"; "$@"; }
28
29 mount_dir=$(mktemp -d)
30
31 err-cleanup() { cd; umount -f $mount_dir; }
32 e mount -o users wrt:/mnt/usb $mount_dir
33
34
35 cd $mount_dir
36 e rm -rf debian-wheezy
37 mkdir debian-wheezy
38 cd debian-wheezy
39 e $src/debian-preseed "$@" # my script
40 cd ..
41 e rm -f tftpboot
42 e ln -s debian-wheezy tftpboot
43
44 cd /
45 e umount $mount_dir
46 e $src/pxe-server default plain # my script