blob: a945a05cb34874c1c209238c42326b56bea96fc5 [file] [log] [blame]
garciadeblas8802d142016-09-20 14:24:13 +02001#!/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
19INFO "installing packages"
20apt update
21lxd init --auto
22lxd waitready
23systemctl stop lxd-bridge
24systemctl --system daemon-reload
25cat <<EOF > /etc/default/lxd-bridge
26USE_LXD_BRIDGE="true"
27LXD_BRIDGE="lxdbr0"
28UPDATE_PROFILE="true"
29LXD_CONFILE=""
30LXD_DOMAIN="lxd"
31LXD_IPV4_ADDR="10.44.127.1"
32LXD_IPV4_NETMASK="255.255.255.0"
33LXD_IPV4_NETWORK="10.44.127.1/24"
34LXD_IPV4_DHCP_RANGE="10.44.127.2,10.44.127.254"
35LXD_IPV4_DHCP_MAX="252"
36LXD_IPV4_NAT="true"
37LXD_IPV6_ADDR=""
38LXD_IPV6_MASK=""
39LXD_IPV6_NETWORK=""
40LXD_IPV6_NAT="false"
41LXD_IPV6_PROXY="false"
42EOF
43
44systemctl enable lxd-bridge
45systemctl start lxd-bridge
46lxc image copy ubuntu:16.04 local: --alias ubuntu-xenial
47apt install -y juju
48juju bootstrap juju localhost
49
50RC=0
51
52INFO "done, RC=$RC"
53exit $RC
54
55