Run top-level ssh with -n
[autocluster.git] / autocluster
index f3268be18f5db57f07131770aa5fd214a7213ef3..b987a1221688179048759ea75c79ba4825a2a979 100755 (executable)
@@ -52,10 +52,16 @@ EOF
     cat <<EOF
 
   commands:
+     base [ create | boot ] ...
+
+     cluster [ build |
+               destroy | undefine |
+               create | update_hosts | boot | setup ] ...
+
      create base
            create a base image
 
-     create cluster CLUSTERNAME
+     create cluster [ CLUSTERNAME ]
            create a full cluster
 
      create node CLUSTERNAME IP_OFFSET
@@ -69,9 +75,6 @@ EOF
 
      bootbase
            boot the base image
-
-     testproxy
-           test your proxy setup
 EOF
     exit 1
 }
@@ -87,6 +90,39 @@ die () {
     fi
 }
 
+announce ()
+{
+    echo "######################################################################"
+    printf "# %-66s #\n" "$*"
+    echo "######################################################################"
+    echo ""
+}
+
+waitfor ()
+{
+    local file="$1"
+    local msg="$2"
+    local timeout="$3"
+
+    local tmpfile=$(mktemp)
+
+    cat <<EOF >"$tmpfile"
+spawn tail -n 10000 -f $file
+expect -timeout $timeout -re "$msg"
+EOF
+
+    export LANG=C
+    expect "$tmpfile"
+    rm -f "$tmpfile"
+
+    if ! grep -E "$msg" "$file" > /dev/null; then
+       echo "Failed to find \"$msg\" in \"$file\""
+       return 1
+    fi
+
+    return 0
+}
+
 ###############################
 
 # Indirectly call a function named by ${1}_${2}
@@ -117,6 +153,11 @@ for_each_node ()
     done
 }
 
+node_is_ctdb_node_DEFAULT ()
+{
+    echo 0
+}
+
 hack_one_node_with ()
 {
     local filter="$1" ; shift
@@ -142,6 +183,53 @@ hack_all_nodes_with ()
     NODES="$nodes"
 }
 
+list_all_cluster_nodes ()
+{
+    # Local function only defined in subshell
+    (
+       print_node_name ()
+       {
+           echo "$3"
+       }
+       for_each_node print_node_name
+    ) | sort
+}
+
+list_all_virsh_domains ()
+{
+    local pattern="${CLUSTER_PATTERN:-${CLUSTER}[a-z]*[0-9]}"
+
+    local domains=$(virsh list --all | awk '{print $2}' | tail -n +3)
+    local d
+    for d in $domains ; do
+       case "$d" in
+           ($pattern) echo "$d" ;;
+       esac
+    done | sort
+}
+
+virsh_cluster ()
+{
+       local command="$1"
+       shift
+
+    local nodes=$(list_all_cluster_nodes)
+    local domains=$(list_all_virsh_domains)
+
+    if [ "$nodes" != "$domains" ] ; then
+       echo "WARNING: Found matching virsh domains that are not part of this cluster!"
+       echo
+    fi
+
+    local ret=0
+    local n
+    for n in $nodes ; do
+       virsh "$command" "$n" "$@" 2>&1 || ret=$?
+    done
+
+    return $ret
+}
+
 register_hook ()
 {
     local hook_var="$1"
@@ -179,6 +267,18 @@ clear_hooks ()
 # the same disk.
 hack_disk_hooks=""
 
+create_node_DEFAULT ()
+{
+    local type="$1"
+    local ip_offset="$2"
+    local name="$3"
+    local ctdb_node="$4"
+
+    echo "Creating node \"$name\" (of type \"${type}\")"
+
+    create_node_COMMON "$name" "$ip_offset" "$type"
+}
+
 # common node creation stuff
 create_node_COMMON ()
 {
@@ -268,11 +368,6 @@ create_node_configure_image ()
     diskimage unmount
 }
 
-# Provides an easy way of removing nodes from $NODE.
-create_node_null () {
-    :
-}
-
 hack_network_map_hooks=""
 
 # Uses: CLUSTER, NAME, NETWORKS, FIRSTIP, ip_offset
@@ -302,24 +397,24 @@ make_network_map ()
        local net="${ip_bits%/*}"
        local netname="acnet_${net//./_}"
 
-       local ip="${net%.*}.${IPNUM}"
-       local mask="255.255.255.0"
+       local ip="${net%.*}.${IPNUM}/${ip_bits#*/}"
+
+       local ipv6="fc00:${net//./:}::${IPNUM}/64"
 
        # This can be used to override the variables in the echo
        # statement below.  The hook can use any other variables
        # available in this function.
        run_hooks hack_network_map_hooks
 
-       echo "${netname} ${dev} ${ip} ${mask} ${mac} ${opts}"
+       echo "${netname} ${dev} ${ip} ${ipv6} ${mac} ${opts}"
        count=$(($count + 1))
     done >"$network_map"
 }
 
 ##############################
 
-hack_nodes_functions=
-
-expand_nodes () {
+expand_nodes ()
+{
     # Expand out any abbreviations in NODES.
     local ns=""
     local n
@@ -345,35 +440,6 @@ expand_nodes () {
     done
     NODES="$ns"
 
-    # Apply nodes hacks.  Some of this is about backward compatibility
-    # but the hacks also fill in the node names and whether they're
-    # part of the CTDB cluster.  The order is the order that
-    # configuration modules register their hacks.
-    run_hooks hack_nodes_functions
-
-    if [ -n "$NUMNODES" ] ; then
-       # Attempt to respect NUMNODES.  Reduce the number of CTDB
-       # nodes to NUMNODES.
-       local numnodes=$NUMNODES
-
-       hack_filter ()
-       {
-           if [ "$ctdb_node" = 1 ] ; then
-               if [ $numnodes -gt 0 ] ; then
-                   numnodes=$(($numnodes - 1))
-               else
-                   node_type="null"
-                   ctdb_node=0
-               fi
-           fi
-       }
-
-       hack_all_nodes_with hack_filter
-                       
-       [ $numnodes -gt 0 ] && \
-           die "Can't not use NUMNODES to increase the number of nodes over that specified by NODES.  You need to set NODES instead - please read the documentation."
-    fi
-    
     # Check IP addresses for duplicates.
     local ip_offsets=":"
     # This function doesn't modify anything...
@@ -384,6 +450,22 @@ expand_nodes () {
        ip_offsets="${ip_offsets}${ip_offset}:"
     }
     hack_all_nodes_with get_ip_offset
+
+    # Determine node names and whether they're in the CTDB cluster
+    declare -A node_count
+    _get_name_ctdb_node ()
+    {
+       local count=$((${node_count[$node_type]:-0} + 1))
+       node_count[$node_type]=$count
+       name=$(call_func node_name_format "$node_type" "$CLUSTER" $count) || {
+           echo "ERROR: Node type \"${node_type}\" not defined!"
+           echo "Valid node types are:"
+           set | sed -n 's@^node_name_format_\(.*\) ().*@  \1@p'
+           exit 1
+       }
+       ctdb_node=$(call_func node_is_ctdb_node "$node_type")
+    }
+    hack_all_nodes_with _get_name_ctdb_node
 }
 
 ##############################
@@ -397,7 +479,7 @@ Some cluster filesystems have problems with other characters."
 
 hosts_file=
 
-common_nodelist_hacking ()
+cluster_nodelist_hacking ()
 {
     # Rework the NODES list
     expand_nodes
@@ -405,13 +487,11 @@ common_nodelist_hacking ()
     # Build /etc/hosts and hack the names of the ctdb nodes
     hosts_line_hack_name ()
     {
-       # Ignore nodes without names (e.g. "null")
-       [ "$node_type" != "null" -a -n "$name" ] || return 0
-
        local sname=""
        local hosts_line
        local ip_addr="${NETWORK_PRIVATE_PREFIX}.$(($FIRSTIP + $ip_offset))"
-       
+
+       # Primary name for CTDB nodes is <CLUSTER>n<num>
        if [ "$ctdb_node" = 1 ] ; then
            num_ctdb_nodes=$(($num_ctdb_nodes + 1))
            sname="${CLUSTER}n${num_ctdb_nodes}"
@@ -455,7 +535,17 @@ common_nodelist_hacking ()
     nodes_file="tmp/nodes.$CLUSTER"
     local num_nodes=0
     hack_all_nodes_with ctdb_nodes_line >$nodes_file
-    : "${NUMNODES:=${num_nodes}}"  # Set $NUMNODES if necessary
+
+    # Build /etc/ctdb/nodes.ipv6
+    ctdb_nodes_line_ipv6 ()
+    {
+       [ "$ctdb_node" = 1 ] || return 0
+       echo "fc00:${NETWORK_PRIVATE_PREFIX//./:}::$(($FIRSTIP + $ip_offset))"
+       num_nodes=$(($num_nodes + 1))
+    }
+    nodes_file_ipv6="tmp/nodes.$CLUSTER.ipv6"
+    local num_nodes=0
+    hack_all_nodes_with ctdb_nodes_line_ipv6 >$nodes_file_ipv6
 
     # Build UUID map
     uuid_map="tmp/uuid_map.$CLUSTER"
@@ -469,9 +559,12 @@ common_nodelist_hacking ()
 create_cluster_hooks=
 cluster_created_hooks=
 
-create_cluster ()
+cluster_create ()
 {
-    CLUSTER="$1"
+    # Use $1.  If not set then use value from configuration file.
+    CLUSTER="${1:-${CLUSTER}}"
+    announce "cluster create \"${CLUSTER}\""
+    [ -n "$CLUSTER" ] || die "\$CLUSTER not set"
 
     sanity_check_cluster_name
 
@@ -480,8 +573,6 @@ create_cluster ()
     # Run hooks before doing anything else.
     run_hooks create_cluster_hooks
 
-    common_nodelist_hacking
-
     for_each_node call_func create_node
 
     echo "Cluster $CLUSTER created"
@@ -498,6 +589,150 @@ cluster_created_hosts_message ()
 
 register_hook cluster_created_hooks cluster_created_hosts_message
 
+cluster_destroy ()
+{
+    announce "cluster destroy \"${CLUSTER}\""
+    [ -n "$CLUSTER" ] || die "\$CLUSTER not set"
+
+    virsh_cluster destroy || true
+}
+
+cluster_undefine ()
+{
+    announce "cluster undefine \"${CLUSTER}\""
+    [ -n "$CLUSTER" ] || die "\$CLUSTER not set"
+
+    virsh_cluster undefine --managed-save || true
+}
+
+cluster_update_hosts ()
+{
+    announce "cluster update_hosts \"${CLUSTER}\""
+    [ -n "$CLUSTER" ] || die "\$CLUSTER not set"
+
+    [ -n "$hosts_file" ] || hosts_file="tmp/hosts.${CLUSTER}"
+    [ -r "$hosts_file" ] || die "Missing hosts file \"${hosts_file}\""
+
+    # Building a general node name regexp is a bit cumbersome.  :-)
+    local name_regexp="("
+    for i in $(set | sed -n -e "s@^\(node_name_format_.*\) ().*@\1@p") ; do
+       # Format node name with placeholders (remembering that "_" is
+       # not valid in a real cluster name)
+       local t=$("$i" "_" "0")
+       # now replace the placeholders with regexps - order is
+       # important here, since the cluster name can contain digits
+       t=$(sed -r -e "s@[[:digit:]]+@[[:digit:]]+@" -e "s@_@${CLUSTER}@" <<<"$t")
+       # add to the regexp
+       name_regexp="${name_regexp}${t}|"
+    done
+    name_regexp="${name_regexp}${CLUSTER}n[[:digit:]]+)"
+
+    local pat="# autocluster ${CLUSTER}\$|[[:space:]]${name_regexp}"
+
+    local t="/etc/hosts.${CLUSTER}"
+    grep -E "$pat" /etc/hosts >"$t" || true
+    if diff -B "$t" "$hosts_file" >/dev/null ; then
+       rm "$t"
+       return
+    fi
+
+    local old=/etc/hosts.old.autocluster
+    cp /etc/hosts "$old"
+    local new=/etc/hosts.new
+    grep -Ev "$pat" "$old" |
+    cat -s - "$hosts_file" >"$new"
+
+    mv "$new" /etc/hosts
+
+    echo "Made these changes to /etc/hosts:"
+    diff -u "$old" /etc/hosts || true
+}
+
+cluster_boot ()
+{
+    announce "cluster boot \"${CLUSTER}\""
+    [ -n "$CLUSTER" ] || die "\$CLUSTER not set"
+
+    virsh_cluster start || return $?
+
+    local nodes=$(list_all_cluster_nodes)
+
+    # Wait for each node
+    local i
+    for i in $nodes ; do
+       waitfor "${KVMLOG}/serial.$i" "login:" 300 || {
+           vircmd destroy "$CLUSTER_PATTERN"
+           die "Failed to create cluster"
+       }
+    done
+
+    # Move past the last line of log output
+    echo ""
+}
+
+cluster_setup_tasks_DEFAULT ()
+{
+    local stage="$1"
+
+    # By default nodes have no tasks
+    case "$stage" in
+       install_packages) echo "" ;;
+       setup_clusterfs)  echo "" ;;
+       setup_node)       echo "" ;;
+       setup_cluster)    echo "" ;;
+    esac
+}
+
+cluster_setup ()
+{
+    announce "cluster setup \"${CLUSTER}\""
+    [ -n "$CLUSTER" ] || die "\$CLUSTER not set"
+
+    local ssh="ssh -n -o StrictHostKeyChecking=no"
+    local setup_clusterfs_done=false
+    local setup_cluster_done=false
+
+    _cluster_setup_do_stage ()
+    {
+       local stage="$1"
+       local type="$2"
+       local ip_offset="$3"
+       local name="$4"
+       local ctdb_node="$5"
+
+       local tasks=$(call_func cluster_setup_tasks "$type" "$stage")
+
+       if [ -n "$tasks" ] ; then
+           # These tasks are only done on 1 node
+           case "$stage" in
+               setup_clusterfs)
+                   if $setup_clusterfs_done ; then
+                       return
+                   else
+                       setup_clusterfs_done=true
+                   fi
+                   ;;
+               setup_cluster)
+                   if $setup_cluster_done ; then
+                       return
+                   else
+                       setup_cluster_done=true
+                   fi
+                   ;;
+           esac
+
+           $ssh "$name" ./scripts/cluster_setup.sh "$stage" $tasks
+       fi
+
+    }
+
+    local stages="install_packages setup_clusterfs setup_node setup_cluster"
+    local stage
+    for stage in $stages ; do
+       for_each_node _cluster_setup_do_stage "$stage"
+    done
+}
+
 create_one_node ()
 {
     CLUSTER="$1"
@@ -507,8 +742,6 @@ create_one_node ()
 
     mkdir -p $VIRTBASE/$CLUSTER $KVMLOG tmp
 
-    common_nodelist_hacking
-
     for n in $NODES ; do
        set -- $(IFS=: ; echo $n)
        [ $single_node_ip_offset -eq $2 ] || continue
@@ -536,8 +769,29 @@ test_proxy() {
 
 kickstart_floppy_create_hooks=
 
+guess_install_network ()
+{
+    # Figure out IP address to use during base install.  Default to
+    # the IP address of the 1st (private) network. If a gateway is
+    # specified then use the IP address associated with it.
+    INSTALL_IP=""
+    INSTALL_GW=""
+    local netname dev ip ipv6 mac opts
+    while read netname dev ip ipv6 mac opts; do
+       local o
+       for o in $opts ; do
+           case "$o" in
+               gw\=*)
+                   INSTALL_GW="${o#gw=}"
+                   INSTALL_IP="$ip"
+           esac
+       done
+       [ -n "$INSTALL_IP" ] || INSTALL_IP="$ip"
+    done <"$network_map"
+}
+
 # create base image
-create_base()
+base_create()
 {
     local NAME="$BASENAME"
     local DISK="${VIRTBASE}/${NAME}.${BASE_FORMAT}"
@@ -564,8 +818,11 @@ create_base()
 
     setup_timezone
 
+    IPNUM=$FIRSTIP
     make_network_map
 
+    guess_install_network
+
     echo "Creating kickstart file from template"
     substitute_vars "$KICKSTART" "tmp/ks.cfg"
 
@@ -622,6 +879,7 @@ may not have matched anything at the end of the kickstart output."
 Install finished, base image $DISK created
 
 You may wish to run
+   chcon -t virt_content_t $DISK
    chattr +i $DISK
 To ensure that this image does not change
 
@@ -632,7 +890,7 @@ EOF
 
 ###############################
 # boot the base disk
-boot_base() {
+base_boot() {
     rm -rf tmp
     mkdir -p tmp
 
@@ -728,6 +986,7 @@ setup_base_grub_conf ()
     for c in $grub_configs ; do
        diskimage sed "$c" \
            -e "s/console=ttyS0,19200/console=ttyS0,115200/"  \
+           -e "s/ console=tty1//" -e "s/ rhgb/ norhgb/"  \
            -e "s/ nodmraid//" -e "s/ nompath//"  \
            -e "s/quiet/noapic divider=10${o:+ }${o}/g"
     done
@@ -749,6 +1008,31 @@ setup_base()
     run_hooks setup_base_hooks
 }
 
+ipv4_prefix_to_netmask ()
+{
+    local prefix="$1"
+
+    local div=$(($prefix / 8))
+    local mod=$(($prefix % 8))
+
+    local octet
+    for octet in 1 2 3 4 ; do
+       if [ $octet -le $div ] ; then
+           echo -n "255"
+       elif [ $mod -ne 0 -a $octet -eq $(($div + 1)) ] ; then
+           local shift=$((8 - $mod))
+           echo -n $(( (255 >> $shift << $shift) ))
+       else
+           echo -n 0
+       fi
+       if [ $octet -lt 4 ] ; then
+           echo -n '.'
+       fi
+    done
+
+    echo
+}
+
 # setup various networking components
 setup_network()
 {
@@ -763,7 +1047,17 @@ setup_network()
 
     echo "Setting up /etc/ctdb/nodes"
     diskimage mkdir_p "/etc/ctdb"
-    diskimage put "$nodes_file" "/etc/ctdb/nodes"
+    if [ "$NETWORK_STACK" = "ipv4" ] ; then
+       diskimage put "$nodes_file" "/etc/ctdb/nodes"
+    elif [ "$NETWORK_STACK" = "ipv6" ] ; then
+       diskimage put "$nodes_file_ipv6" "/etc/ctdb/nodes"
+    elif [ "$NETWORK_STACK" = "dual" ] ; then
+       diskimage put "$nodes_file" "/etc/ctdb/nodes.ipv4"
+       diskimage put "$nodes_file_ipv6" "/etc/ctdb/nodes.ipv6"
+       diskimage put "$nodes_file" "/etc/ctdb/nodes"
+    else
+       die "Error: Invalid NETWORK_STACK value \"$NETWORK_STACK\"."
+    fi
 
     [ "$WEBPROXY" = "" ] || {
        diskimage append_text "export http_proxy=$WEBPROXY" "/etc/bashrc"
@@ -781,17 +1075,33 @@ setup_network()
     diskimage rm_rf "/etc/udev/rules.d/70-persistent-net.rules"
 
     echo "Setting up network interfaces: "
-    local netname dev ip mask mac opts
-    while read netname dev ip mask mac opts; do
+    local netname dev ip ipv6 mac opts
+    while read netname dev ip ipv6 mac opts; do
        echo "  $dev"
+
+       local o gw addr mask
+       gw=""
+       for o in $opts ; do
+           case "$o" in
+               gw\=*)
+                   gw="${o#gw=}"
+           esac
+       done
+
+       addr=${ip%/*}
+       mask=$(ipv4_prefix_to_netmask ${ip#*/})
+
        cat <<EOF | \
            diskimage put - "/etc/sysconfig/network-scripts/ifcfg-${dev}"
 DEVICE=$dev
 ONBOOT=yes
 TYPE=Ethernet
-IPADDR=$ip
+IPADDR=$addr
 NETMASK=$mask
 HWADDR=$mac
+IPV6INIT=yes
+IPV6ADDR=$ipv6
+${gw:+GATEWAY=}${gw}
 EOF
 
        # This goes to 70-persistent-net.rules
@@ -806,6 +1116,34 @@ EOF
 
 register_hook setup_base_hooks setup_network
 
+setup_base_cluster_setup_config ()
+{
+    local f
+    {
+       echo "# Generated by autocluster"
+       echo
+       # This is a bit of a hack.  Perhaps these script belong
+       # elsewhere, since they no longer have templates?
+       for f in $(find "${BASE_TEMPLATES}/all/root/scripts" -type f |
+           xargs grep -l '^#config:') ; do
+
+           b=$(basename "$f")
+           echo "# $b"
+           local vs v
+           vs=$(sed -n 's@^#config: *@@p' "$f")
+           for v in $vs ; do
+               # This could substitute the values in directly using
+               # ${!v} but then no sanity checking is done to make
+               # sure variables are set.
+               echo "${v}=\"@@${v}@@\""
+           done
+           echo
+       done
+    } | diskimage substitute_vars - "/root/scripts/cluster_setup.config"
+}
+
+register_hook setup_base_hooks setup_base_cluster_setup_config
+
 setup_timezone() {
     [ -z "$TIMEZONE" ] && {
        [ -r /etc/timezone ] && {
@@ -1119,11 +1457,24 @@ usage_config_options (){
     usage_smart_display load_config
 }
 
-list_releases () {
-    local releases=$(cd $installdir/releases && echo *.release)
-    releases="${releases//.release}"
-    releases="${releases// /\", \"}"
-    echo "\"$releases\""
+actions_init ()
+{
+    actions=""
+}
+
+actions_add ()
+{
+    actions="${actions}${actions:+ }$*"
+}
+
+actions_run ()
+{
+    [ -n "$actions" ] || usage
+
+    local a
+    for a in $actions ; do
+       $a
+    done
 }
 
 ######################################################################
@@ -1137,7 +1488,7 @@ load_config
 ############################
 # parse command line options
 long_opts=$(getopt_config_options)
-getopt_output=$(getopt -n autocluster -o "c:e:E:xh" -l help,dump,with-release: -l "$long_opts" -- "$@")
+getopt_output=$(getopt -n autocluster -o "c:e:E:xh" -l help,dump -l "$long_opts" -- "$@")
 [ $? != 0 ] && usage
 
 use_default_config=true
@@ -1151,7 +1502,6 @@ while true ; do
        -e) shift 2 ;;
        -E) shift 2 ;;
        --) shift ; break ;;
-       --with-release) shift 2 ;; # Don't set use_default_config=false!!!
        --dump|-x) shift ;;
        -h|--help) usage ;; # Usage should be shown here for real defaults.
        --*) shift 2 ;; # Assume other long opts are valid and take an arg.
@@ -1166,8 +1516,20 @@ eval set -- "$getopt_output"
 
 while true ; do
     case "$1" in
-       # force at least ./local_file to avoid accidental file from $PATH
-       -c) . "$(dirname $2)/$(basename $2)" ; shift 2 ;;
+       -c)
+           b=$(basename $2)
+           # force at least ./local_file to avoid accidental file
+           # from $PATH
+           . "$(dirname $2)/${b}"
+           # If $CLUSTER is unset then try to base it on the filename
+           if [ ! -n "$CLUSTER" ] ; then
+               case "$b" in
+                   *.autocluster)
+                       CLUSTER="${b%.autocluster}"
+               esac
+           fi
+           shift 2
+           ;;
        -e) no_sanity=1 ; run_hooks post_config_hooks ; eval "$2" ; exit ;;
        -E) eval "$2" ; shift 2 ;;
        -x) set -x; shift ;;
@@ -1205,21 +1567,50 @@ check_command expect
 
 [ $# -lt 1 ] && usage
 
-command="$1"
+t="$1"
 shift
 
-case $command in
+case "$t" in
+    base)
+       actions_init
+       for t in "$@" ; do
+           case "$t" in
+               create|boot) actions_add "base_${t}" ;;
+               *) usage ;;
+           esac
+       done
+       actions_run
+       ;;
+
+    cluster)
+       actions_init
+       for t in "$@" ; do
+           case "$t" in
+               destroy|undefine|create|update_hosts|boot|setup)
+                   actions_add "cluster_${t}" ;;
+               build)
+                   for t in destroy undefine create update_hosts boot setup ; do
+                       actions_add "cluster_${t}"
+                   done
+                   ;;
+               *) usage ;;
+           esac
+       done
+       cluster_nodelist_hacking
+       actions_run
+       ;;
+
     create)
-       type=$1
+       t="$1"
        shift
-       case $type in
+       case "$t" in
            base)
                [ $# != 0 ] && usage
-               create_base
+               base_create
                ;;
            cluster)
                [ $# != 1 ] && usage
-               create_cluster "$1"
+               cluster_create "$1"
                ;;
            node)
                [ $# != 2 ] && usage
@@ -1239,10 +1630,7 @@ case $command in
        diskimage unmount
        ;;
     bootbase)
-       boot_base;
-       ;;
-    testproxy)
-       test_proxy;
+       base_boot;
        ;;
     *)
        usage;