diff options
author | Narinder Gupta <narinder.gupta@canonical.com> | 2016-01-22 19:49:42 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-01-22 19:49:42 +0000 |
commit | e650480acc10c983e35484ed7a2f5905b74910ed (patch) | |
tree | 3e6256cf9d16601ac512ce727cc77bbd48597cfd /ci/trusty/ubuntu-nodes-compute/hooks/install | |
parent | 76af780ef57e6ff882e92d4ad6205a34a9b76202 (diff) | |
parent | 1fa4110c2cd0b0f623e2f8444b6088db9fcdd1fd (diff) |
Merge "deleted as MAAS 1.9 handles all configuration so no need to have special charm for configuration now."
Diffstat (limited to 'ci/trusty/ubuntu-nodes-compute/hooks/install')
-rwxr-xr-x | ci/trusty/ubuntu-nodes-compute/hooks/install | 30 |
1 files changed, 0 insertions, 30 deletions
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 |