whitespace
[automated-distro-installer] / fai-revm
1 #!/bin/bash -l
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
20 x="$(readlink -f "$BASH_SOURCE")"
21 script_dir="${x%/*}"
22 source "${script_dir}/bash-trace"
23
24 e() { echo "$*"; "$@"; }
25
26
27 usage() {
28 cat <<EOF
29 # Usage: ${0##*/} [OPTIONS]
30 Setup fai or arch pxe (depending on $0 name)
31 then start a virtual machine to test the config
32
33 Note, sometimes shutting down the existing demohost vm
34 fails. Just run again if that happens.
35
36 -d Don't do dhcp setup for when we aren't on Ian's home network.
37 -n Create new qcow2(s) for vm. Good for testing partitioning
38 script, to ensure a blank disk.
39 -p Use pxe instead of autodiscover iso with fai.
40 -r Do not boot after install is complete
41 -h|--help Print help and exit.
42
43 Note: Uses GNU getopt options parsing style
44 EOF
45 exit $1
46 }
47
48 orig_args=("$@")
49 new_disk=false
50 pxe=false
51 temp=$(getopt -l help dnprh "$@") || usage 1
52 eval set -- "$temp"
53 while true; do
54 case $1 in
55 -d) dhcp_arg=-d; shift ;;
56 -n) new_disk=true; shift ;;
57 -p) pxe=true; shift ;;
58 -r) reboot_arg=--noreboot; shift ;;
59 -h|--help) usage ;;
60 --) shift; break ;;
61 *) echo "$0: Internal error!" ; exit 1 ;;
62 esac
63 done
64
65
66 # change this to test different disk counts. 1 and > 1 should be the only
67 # important things to test.
68 disk_count=1
69
70
71 if [[ $script_dir == /a/bin/* ]]; then
72 # Copy our script elsewhere so we can develop it
73 # and save it at the same time it's running
74 rm -rf /tmp/faifreeze
75 cp -ar /a/bin/fai /tmp/faifreeze
76 exec /tmp/faifreeze/${BASH_SOURCE##*/} "${orig_args[@]}"
77 fi
78
79 cd $script_dir
80
81 is_arch_revm() {
82 [[ ${0##*/} == arch-revm ]]
83 }
84
85 cleanup() {
86 echo "doing cleanup"
87 e ./pxe-server $dhcp_arg
88 ./faiserver-disable
89 }
90 _errcatch_cleanup=cleanup
91
92 boot_arg=--pxe
93 if is_arch_revm; then
94 e ./pxe-server $dhcp_arg demohost arch
95 sleep 2
96 # via osinfo-query os. guessing arch is closest to latest fedora.
97 variant=fedora22
98 else
99 if $pxe; then
100 e ./pxe-server $dhcp_arg demohost fai
101 sleep 2
102 else
103 fai-monitor &
104 if [[ ! $BASEFILE_DIR ]]; then
105 BASEFILE_DIR=/tmp
106 fi
107 if [[ ! -e $BASEFILE_DIR/autodiscover.iso ]]; then
108 fai-cd -g $(readlink -f grub.cfg.autodiscover) -f -A $BASEFILE_DIR/autodiscover.iso
109 fi
110 boot_arg="--cdrom $BASEFILE_DIR/autodiscover.iso"
111 e fai-redep
112 e myfai-chboot default
113 fi
114 # I don't think these variants actually make a diff for us, but I
115 # use the appropriate one when trying a new distro just in case.
116 variant=ubuntu14.04
117 #variant=ubuntu16.04
118 #variant=debian8
119 fi
120
121 name=demohost
122
123 e s virshrm $name ||:
124
125
126 disk_arg=()
127 for ((i=1; i <= disk_count; i++)); do
128 f=/var/lib/libvirt/images/${name}$i
129 disk_arg+=("--disk path=$f")
130 if $new_disk || [[ ! -e $f ]]; then
131 s rm -f $f
132 e s qemu-img create -o preallocation=metadata -f qcow2 $f 50G
133 fi
134 done
135
136 if [[ $SSH_CLIENT ]]; then
137 console_arg=--noautoconsole
138 fi
139
140 # docker makes forward default to drop, which blocks the vm pxe on flidas. easiest solution:
141 s iptables -P FORWARD ACCEPT
142
143 # --cpu host: this causes mkfs.btrfs to fail with a stack trace which began
144 # something like:
145 # init_module+0x108/0x1000 [raid6_pq]
146 #
147 # uniq is to stop gtk-warning spam
148 # e s virt-install --os-variant $variant -n $name --pxe -r 2048 --vcpus 1 \
149 # ${disk_arg[*]} -w bridge=br0,mac=52:54:00:9c:ef:ad $reboot_arg \
150 # --graphics spice,listen=0.0.0.0 $console_arg |& grep -v '^ *$' | uniq &
151
152
153 e s virt-install --os-variant $variant -n $name $boot_arg -r 2048 --vcpus 1 \
154 ${disk_arg[*]} -w bridge=br0,mac=52:54:00:9c:ef:ad $reboot_arg \
155 --graphics spice,listen=0.0.0.0 $console_arg |& grep -v '^ *$' | uniq &
156
157
158 if [[ $SSH_CLIENT ]]; then
159 fg
160 fi
161
162 sleep 30
163 while ! timeout -s 9 10 ssh -oBatchMode=yes root@$name /bin/true; do
164 e sleep 5
165 done
166 unset _errcatch_cleanup
167 e ./pxe-server $dhcp_arg
168 if is_arch_revm; then
169 ./arch-init-remote $name
170 fi