diff options
author | Narinder Gupta <narinder.gupta@canonical.com> | 2015-11-30 20:56:38 -0600 |
---|---|---|
committer | Narinder Gupta <narinder.gupta@canonical.com> | 2015-11-30 20:56:38 -0600 |
commit | cb5a719425069adfbf539260fa422c1aa1404004 (patch) | |
tree | d3bcbe9c6fdfba97bdd5d2de99255ac3ac4a497e /ci/maas/att/virpod1/lxc-add-more-interfaces | |
parent | 557767d49de1dde707fb35a2ae803eba9a01b7ce (diff) |
added support for att virtual pod1 on Intel NUC. Also added support
of IPv6 based on invocation of IPV6.
Change-Id: I6876cff12e25fd9f05b15815d4ac72ce84a78997
Diffstat (limited to 'ci/maas/att/virpod1/lxc-add-more-interfaces')
-rw-r--r-- | ci/maas/att/virpod1/lxc-add-more-interfaces | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/ci/maas/att/virpod1/lxc-add-more-interfaces b/ci/maas/att/virpod1/lxc-add-more-interfaces new file mode 100644 index 00000000..d9512c31 --- /dev/null +++ b/ci/maas/att/virpod1/lxc-add-more-interfaces @@ -0,0 +1,35 @@ +#!/bin/bash + +set -e +set -u + +cat <<EOF >> "$LXC_CONFIG_FILE" + +EOF + +USERDATA="$LXC_ROOTFS_PATH/var/lib/cloud/seed/nocloud-net/user-data" + +additional_interfaces=" +- | + cat <<EOF >> /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 <<EOF > /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" |