From 1fa4110c2cd0b0f623e2f8444b6088db9fcdd1fd Mon Sep 17 00:00:00 2001 From: Narinder Gupta Date: Mon, 18 Jan 2016 09:46:04 -0600 Subject: deleted as MAAS 1.9 handles all configuration so no need to have special charm for configuration now. Change-Id: I7268cee5479898b8da2007c590d9eaae5bb9441a --- .../ubuntu-nodes-compute/lxc/add-more-interface | 52 ---------------------- 1 file changed, 52 deletions(-) delete mode 100755 ci/trusty/ubuntu-nodes-compute/lxc/add-more-interface (limited to 'ci/trusty/ubuntu-nodes-compute/lxc/add-more-interface') diff --git a/ci/trusty/ubuntu-nodes-compute/lxc/add-more-interface b/ci/trusty/ubuntu-nodes-compute/lxc/add-more-interface deleted file mode 100755 index c9bca9fd..00000000 --- a/ci/trusty/ubuntu-nodes-compute/lxc/add-more-interface +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/bash - -set -e -set -u - -cat <> "$LXC_CONFIG_FILE" - -## added by juju charm -lxc.network.type = veth -lxc.network.flags = up -lxc.network.link = brData -lxc.network.name = eth1 -lxc.network.hwaddr = 00:16:3e:$(openssl rand -hex 3| sed 's/\(..\)/\1:/g; s/.$//') - -lxc.network.type = veth -lxc.network.flags = up -lxc.network.link = brPublic -lxc.network.name = eth2 -lxc.network.hwaddr = 00:16:3e:$(openssl rand -hex 3| sed 's/\(..\)/\1:/g; s/.$//') -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 - auto eth1 - iface eth1 inet dhcp - - auto eth2 - iface eth2 inet dhcp - 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