diff options
author | Narinder Gupta <narinder.gupta@canonical.com> | 2015-12-09 14:04:46 -0600 |
---|---|---|
committer | Narinder Gupta <narinder.gupta@canonical.com> | 2015-12-09 15:18:49 -0600 |
commit | f80c82fd5f3369e4c91d5e3836d2a68969912e27 (patch) | |
tree | 6aebccaaf5aa65dadcc2e466ae0f47bf04b0d889 /ci/maas/juniper/pod1/lxc-add-more-interfaces | |
parent | d28fd85ebdd3c5c4a39d4c8a04a6707da2ed3f48 (diff) |
added support for maas deployment for juniper lab.
modified deploy.sh to resolve CI issue.
Change-Id: Ifb0f2aaa6806289d2d5c4b493815dda89478a942
Diffstat (limited to 'ci/maas/juniper/pod1/lxc-add-more-interfaces')
-rw-r--r-- | ci/maas/juniper/pod1/lxc-add-more-interfaces | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/ci/maas/juniper/pod1/lxc-add-more-interfaces b/ci/maas/juniper/pod1/lxc-add-more-interfaces new file mode 100644 index 00000000..64519097 --- /dev/null +++ b/ci/maas/juniper/pod1/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"
|