From 248b456255f831b27e458e2cd8bd0f449be11434 Mon Sep 17 00:00:00 2001 From: Alexandru Avadanii Date: Fri, 28 Jun 2019 15:52:22 +0200 Subject: [virtual] Add Ubuntu 18.04 (Bionic) basic support Support Ubuntu 18.04 for virtual deployments (and implicitly for VCP VMs). Note that MaaS-provisioned systems will require the same changes being applied via curtin templates. Change-Id: I7cbd7e7c4421f6b970ce6ef97c10d269fec5fca3 Signed-off-by: Alexandru Avadanii --- mcp/scripts/user-data.sh.j2 | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'mcp/scripts/user-data.sh.j2') diff --git a/mcp/scripts/user-data.sh.j2 b/mcp/scripts/user-data.sh.j2 index f568164c1..8b80e32d0 100644 --- a/mcp/scripts/user-data.sh.j2 +++ b/mcp/scripts/user-data.sh.j2 @@ -11,5 +11,10 @@ rm -f /etc/salt/minion_id /etc/salt/pki/minion/minion_master.pub echo "id: $(hostname).{{ conf.cluster.domain }}" > /etc/salt/minion echo "master: {{ nm.net_admin | ipnet_hostaddr(nm.start_ip[nm.net_admin] + nm.net_admin_hosts.index('opnfv_infra_config_pxe_admin_address') +1) }}" >> /etc/salt/minion ldconfig +{%- if 'ubuntu1804' in conf.MCP_OS %} +systemctl unmask networking.service || true +systemctl enable networking.service || true +systemctl start networking.service || true +{%- endif %} systemctl enable salt-minion.service systemctl restart salt-minion.service -- cgit 1.2.3-korg