add host
[automated-distro-installer] / myfai-chboot-local
1 #!/bin/bash
2
3 set -eE -o pipefail
4 trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?" >&2' ERR
5
6 case $1 in
7 -h|--help)
8 echo "see help from myfai-chboot"
9 exit 0
10 ;;
11 esac
12
13 [[ $EUID == 0 ]] || exec sudo "${BASH_SOURCE}" "$@"
14
15 e() { echo "$@"; "$@"; }
16
17
18 rm -f /srv/tftp/fai/pxelinux.cfg/*
19 if [[ ! $1 ]]; then
20 exit 0
21 fi
22
23 std_arg="-u nfs://faiserver/srv/fai/config"
24 e fai-chboot -Iv $std_arg default # set it to default to get a val out of it next
25 kernel=$(fai-chboot -L '^default$' | awk '{print $3}')
26 # man page doesn't explain this, but this deletes & thus disables
27 # all chboot systems.
28 type -t host &>/dev/null || apt-get -y install dnsutils
29 gateway_ip=$(route -n | sed -rn 's/^0\.0\.0\.0\s+(\S+).*/\1/p')
30 my_ip=$(host faiserver $gateway_ip | sed -rn 's/^\S+ has address //p')
31 k_args=$(fai-chboot -L '^default$' | \
32 sed -r "s/^(\S+\s+){3}(.*root=)(.*)/\2$my_ip:\3/")
33 rm -f /srv/tftp/fai/pxelinux.cfg/*
34 e fai-chboot -k "$k_args" -v -f verbose,sshd,createvt,reboot $std_arg $kernel "$@"
35
36
37 # todo, remove the nopxe script. adjust fai-check to reboot if it fails on the kexec.