fixes plus readme updates
[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 boot_arg="--cdrom /a/bin/fai-basefiles/autodiscover.iso"
104 e fai-redep
105 e myfai-chboot default
106 fi
107 # I don't think these variants actually make a diff for us, but I
108 # use the appropriate one when trying a new distro just in case.
109 variant=ubuntu14.04
110 #variant=ubuntu16.04
111 #variant=debian8
112 fi
113
114 name=demohost
115
116 e s virshrm $name ||:
117
118
119 disk_arg=()
120 for ((i=1; i <= disk_count; i++)); do
121 f=/var/lib/libvirt/images/${name}$i
122 disk_arg+=("--disk path=$f")
123 if $new_disk || [[ ! -e $f ]]; then
124 s rm -f $f
125 e s qemu-img create -o preallocation=metadata -f qcow2 $f 50G
126 fi
127 done
128
129 if [[ $SSH_CLIENT ]]; then
130 console_arg=--noautoconsole
131 fi
132
133 # docker makes forward default to drop, which blocks the vm pxe on flidas. easiest solution:
134 s iptables -P FORWARD ACCEPT
135
136 # --cpu host: this causes mkfs.btrfs to fail with a stack trace which began
137 # something like:
138 # init_module+0x108/0x1000 [raid6_pq]
139 #
140 # uniq is to stop gtk-warning spam
141 # e s virt-install --os-variant $variant -n $name --pxe -r 2048 --vcpus 1 \
142 # ${disk_arg[*]} -w bridge=br0,mac=52:54:00:9c:ef:ad $reboot_arg \
143 # --graphics spice,listen=0.0.0.0 $console_arg |& grep -v '^ *$' | uniq &
144
145
146 e s virt-install --os-variant $variant -n $name $boot_arg -r 2048 --vcpus 1 \
147 ${disk_arg[*]} -w bridge=br0,mac=52:54:00:9c:ef:ad $reboot_arg \
148 --graphics spice,listen=0.0.0.0 $console_arg |& grep -v '^ *$' | uniq &
149
150
151 if [[ $SSH_CLIENT ]]; then
152 fg
153 fi
154
155 sleep 30
156 while ! timeout -s 9 10 ssh -oBatchMode=yes root@$name /bin/true; do
157 e sleep 5
158 done
159 unset _errcatch_cleanup
160 e pxe-server
161 if is_arch_revm; then
162 ./arch-init-remote $name
163 fi