diff options
author | Narinder Gupta <narinder.gupta@canonical.com> | 2016-02-12 14:11:40 -0600 |
---|---|---|
committer | Narinder Gupta <narinder.gupta@canonical.com> | 2016-02-12 21:58:55 +0000 |
commit | 0b6877ec99cc0e74fa012cd361868eff4dade16c (patch) | |
tree | 9bd4b98f90828f5625074ad6d95dc314aa3c3c2c /ci/maas/juniper/pod1/lxc-add-more-interfaces | |
parent | 85413a8d7fd4fa6a6c420e774f2c0c5a94cfc121 (diff) |
modified the dhcp for mutiple deployment of openstack.
Change-Id: I09ee80a024f7756d26a87f8ae58d9b7267ee1dba
(cherry picked from commit 3d836087874a45b29cce1d45de32bf7eef02da90)
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, 0 insertions, 35 deletions
diff --git a/ci/maas/juniper/pod1/lxc-add-more-interfaces b/ci/maas/juniper/pod1/lxc-add-more-interfaces deleted file mode 100644 index 64519097..00000000 --- a/ci/maas/juniper/pod1/lxc-add-more-interfaces +++ /dev/null @@ -1,35 +0,0 @@ -#!/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"
|