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 --- ci/trusty/ubuntu-nodes-compute/hooks/install | 30 ---------------------------- 1 file changed, 30 deletions(-) delete mode 100755 ci/trusty/ubuntu-nodes-compute/hooks/install (limited to 'ci/trusty/ubuntu-nodes-compute/hooks') diff --git a/ci/trusty/ubuntu-nodes-compute/hooks/install b/ci/trusty/ubuntu-nodes-compute/hooks/install deleted file mode 100755 index 17265f56..00000000 --- a/ci/trusty/ubuntu-nodes-compute/hooks/install +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/bash - -set -e -set -u - -## install lxc pre-configuration to setup multiple interfaces -status-set maintenance "setting up lxc clone hook" || true -mkdir -p /usr/local/share/lxc/hooks/ -install -m 755 lxc/add-more-interfaces /usr/local/share/lxc/hooks/ - -dpkg-divert --local \ - --divert /usr/share/lxc/config/ubuntu-cloud.trusty.conf.ubuntu.orig \ - --add /usr/share/lxc/config/ubuntu-cloud.trusty.conf -mkdir -p /usr/share/lxc/config/ -install -m 644 lxc/ubuntu-cloud.trusty.conf /usr/share/lxc/config/ - -## network interfaces -status-set maintenance "setting up network interfaces" || true -apt-get update || true -apt-get install -y ifenslave ethtool bridge-utils vlan - -if ! grep -q 8021q /etc/modules; then - echo 8021q >> /etc/modules -fi - -## write /etc/network/interfaces for the host -install -m 644 network/interfaces.host /etc/network/interfaces -ifup -a - -status-set active || true -- cgit 1.2.3-korg