| garciadeblas | 8802d14 | 2016-09-20 14:24:13 +0200 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # Copyright 2016 Telefónica Investigación y Desarrollo S.A.U. |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | # 20 Sep 2016 -- Gerardo Garcia -- adapted from template |
| 17 | # |
| 18 | |
| garciadeblas | 0dd790c | 2016-09-20 17:23:48 +0200 | [diff] [blame] | 19 | HERE=$(realpath $(dirname $0)) |
| 20 | OSM_JENKINS=$(dirname $HERE) |
| 21 | . $OSM_JENKINS/common/all_funcs |
| 22 | |
| garciadeblas | 8802d14 | 2016-09-20 14:24:13 +0200 | [diff] [blame] | 23 | INFO "installing packages" |
| 24 | apt update |
| 25 | lxd init --auto |
| 26 | lxd waitready |
| 27 | systemctl stop lxd-bridge |
| 28 | systemctl --system daemon-reload |
| 29 | cat <<EOF > /etc/default/lxd-bridge |
| 30 | USE_LXD_BRIDGE="true" |
| 31 | LXD_BRIDGE="lxdbr0" |
| 32 | UPDATE_PROFILE="true" |
| 33 | LXD_CONFILE="" |
| 34 | LXD_DOMAIN="lxd" |
| 35 | LXD_IPV4_ADDR="10.44.127.1" |
| 36 | LXD_IPV4_NETMASK="255.255.255.0" |
| 37 | LXD_IPV4_NETWORK="10.44.127.1/24" |
| 38 | LXD_IPV4_DHCP_RANGE="10.44.127.2,10.44.127.254" |
| 39 | LXD_IPV4_DHCP_MAX="252" |
| 40 | LXD_IPV4_NAT="true" |
| 41 | LXD_IPV6_ADDR="" |
| 42 | LXD_IPV6_MASK="" |
| 43 | LXD_IPV6_NETWORK="" |
| 44 | LXD_IPV6_NAT="false" |
| 45 | LXD_IPV6_PROXY="false" |
| 46 | EOF |
| 47 | |
| 48 | systemctl enable lxd-bridge |
| 49 | systemctl start lxd-bridge |
| 50 | lxc image copy ubuntu:16.04 local: --alias ubuntu-xenial |
| garciadeblas | 33c7825 | 2016-10-04 01:25:42 +0200 | [diff] [blame] | 51 | add-apt-repository -y ppa:juju/devel |
| garciadeblas | 8776ebf | 2016-10-04 01:10:13 +0200 | [diff] [blame] | 52 | apt update |
| garciadeblas | 8802d14 | 2016-09-20 14:24:13 +0200 | [diff] [blame] | 53 | apt install -y juju |
| 54 | juju bootstrap juju localhost |
| 55 | |
| 56 | RC=0 |
| 57 | |
| 58 | INFO "done, RC=$RC" |
| 59 | exit $RC |
| 60 | |
| 61 | |