From b4ee809c40d27d3323bb19b4edfd188ebd0535d6 Mon Sep 17 00:00:00 2001 From: Narinder Gupta Date: Wed, 2 Dec 2015 22:43:18 -0600 Subject: modified to include the default deployment of MAAS on virbr0 in case no lab is provided. modified maas deployment creating the default storage pool. Change-Id: Ic48b95222c01e5b5f2984777776c306dbd226832 --- ci/maas/default/lxc-add-more-interfaces | 35 +++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 ci/maas/default/lxc-add-more-interfaces (limited to 'ci/maas/default/lxc-add-more-interfaces') diff --git a/ci/maas/default/lxc-add-more-interfaces b/ci/maas/default/lxc-add-more-interfaces new file mode 100644 index 00000000..d9512c31 --- /dev/null +++ b/ci/maas/default/lxc-add-more-interfaces @@ -0,0 +1,35 @@ +#!/bin/bash + +set -e +set -u + +cat <> "$LXC_CONFIG_FILE" + +EOF + +USERDATA="$LXC_ROOTFS_PATH/var/lib/cloud/seed/nocloud-net/user-data" + +additional_interfaces=" +- | + cat <> /etc/network/interfaces.d/additional-interfaces + ## added by juju charm + ## those interfaces will be brought up by the upstart job as /etc/init/additional-interfaces.conf + ## LP: #1483932 + EOF +- machine_agent=\$(hostname | sed -e 's/^juju-/jujud-/') +- | + cat < /etc/init/additional-interfaces.conf + ## added by juju charm + ## LP: #1483932 + start on started \${machine_agent} + + script + sleep 10 + ifup -a -i /etc/network/interfaces.d/additional-interfaces + end script + EOF +" +additional_interfaces=$(echo "$additional_interfaces" | sed -e 's/$/\\n/' | tr -d '\n') + +sed -i.orig -e "s@^runcmd:@\0$additional_interfaces@" \ + "$USERDATA" -- cgit 1.2.3-korg