d29bfc5f81
Signed-off-by: Thomas Hipp <thomas.hipp@canonical.com>
157 lines
4.1 KiB
Plaintext
157 lines
4.1 KiB
Plaintext
image:
|
|
distribution: "ubuntu"
|
|
release: cosmic
|
|
|
|
source:
|
|
downloader: debootstrap
|
|
same_as: gutsy
|
|
url: http://archive.ubuntu.com/ubuntu
|
|
keyserver: keyserver.ubuntu.com
|
|
keys:
|
|
- 0x790BC7277767219C42C86F933B4FE6ACC0B21F32
|
|
|
|
apt_sources: |-
|
|
{% if image.architecture_mapped == "amd64" or image.architecture_mapped == "i386" %}deb http://archive.ubuntu.com/ubuntu {{ image.release }} main restricted universe multiverse
|
|
deb http://archive.ubuntu.com/ubuntu {{ image.release }}-updates main restricted universe multiverse
|
|
deb http://security.ubuntu.com/ubuntu {{ image.release }}-security main restricted universe multiverse
|
|
{% else %}deb http://ports.ubuntu.com/ubuntu-ports {{ image.release }} main restricted universe multiverse
|
|
deb http://ports.ubuntu.com/ubuntu-ports {{ image.release }}-updates main restricted universe multiverse
|
|
deb http://ports.ubuntu.com/ubuntu-ports {{ image.release }}-security main restricted universe multiverse
|
|
{% endif %}
|
|
|
|
targets:
|
|
lxc:
|
|
create-message: |-
|
|
You just created an {{ image.description }} container.
|
|
|
|
To enable SSH, run: apt install openssh-server
|
|
No default root or user password are set by LXC.
|
|
|
|
config:
|
|
- type: all
|
|
before: 5
|
|
content: |-
|
|
lxc.include = LXC_TEMPLATE_CONFIG/ubuntu.common.conf
|
|
|
|
- type: user
|
|
before: 5
|
|
content: |-
|
|
lxc.include = LXC_TEMPLATE_CONFIG/ubuntu.userns.conf
|
|
|
|
- type: all
|
|
after: 4
|
|
content: |-
|
|
lxc.include = LXC_TEMPLATE_CONFIG/common.conf
|
|
|
|
# For Ubuntu 14.04
|
|
lxc.mount.entry = /sys/kernel/debug sys/kernel/debug none bind,optional 0 0
|
|
lxc.mount.entry = /sys/kernel/security sys/kernel/security none bind,optional 0 0
|
|
lxc.mount.entry = /sys/fs/pstore sys/fs/pstore none bind,optional 0 0
|
|
lxc.mount.entry = mqueue dev/mqueue mqueue rw,relatime,create=dir,optional 0 0
|
|
|
|
- type: user
|
|
after: 4
|
|
content: |-
|
|
lxc.include = LXC_TEMPLATE_CONFIG/userns.conf
|
|
|
|
# For Ubuntu 14.04
|
|
lxc.mount.entry = /sys/firmware/efi/efivars sys/firmware/efi/efivars none bind,optional 0 0
|
|
lxc.mount.entry = /proc/sys/fs/binfmt_misc proc/sys/fs/binfmt_misc none bind,optional 0 0
|
|
|
|
- type: all
|
|
content: |-
|
|
lxc.arch = {{ image.architecture_personality }}
|
|
|
|
files:
|
|
- path: /etc/hostname
|
|
generator: hostname
|
|
|
|
- path: /etc/hosts
|
|
generator: hosts
|
|
|
|
- path: /etc/resolvconf/resolv.conf.d/original
|
|
generator: remove
|
|
|
|
- path: /etc/resolvconf/resolv.conf.d/tail
|
|
generator: remove
|
|
|
|
- path: /etc/machine-id
|
|
generator: remove
|
|
|
|
- path: /etc/netplan/10-lxc.yaml
|
|
generator: dump
|
|
content: |-
|
|
network:
|
|
version: 2
|
|
ethernets:
|
|
eth0: {dhcp4: true}
|
|
releases:
|
|
- artful
|
|
- bionic
|
|
- cosmic
|
|
- disco
|
|
|
|
- path: /etc/network/interfaces
|
|
generator: dump
|
|
content: |-
|
|
# This file describes the network interfaces available on your system
|
|
# and how to activate them. For more information, see interfaces(5).
|
|
|
|
# The loopback network interface
|
|
auto lo
|
|
iface lo inet loopback
|
|
|
|
auto eth0
|
|
iface eth0 inet dhcp
|
|
releases:
|
|
- trusty
|
|
- xenial
|
|
|
|
- path: /etc/init/lxc-tty.conf
|
|
generator: upstart-tty
|
|
releases:
|
|
- trusty
|
|
|
|
packages:
|
|
manager: apt
|
|
update: true
|
|
cleanup: true
|
|
|
|
sets:
|
|
- packages:
|
|
- apt-transport-https
|
|
- language-pack-en
|
|
- openssh-client
|
|
- vim
|
|
action: install
|
|
|
|
actions:
|
|
- trigger: post-update
|
|
action: |-
|
|
#!/bin/sh
|
|
set -eux
|
|
|
|
# Create the ubuntu user account
|
|
getent group sudo >/dev/null 2>&1 || groupadd --system sudo
|
|
useradd --create-home -s /bin/bash -G sudo -U ubuntu
|
|
|
|
- trigger: post-packages
|
|
action: |-
|
|
#!/bin/sh
|
|
set -eux
|
|
|
|
# Make sure the locale is built and functional
|
|
locale-gen en_US.UTF-8
|
|
update-locale LANG=en_US.UTF-8
|
|
|
|
# Cleanup underlying /run
|
|
mount -o bind / /mnt
|
|
rm -rf /mnt/run/*
|
|
umount /mnt
|
|
|
|
# Cleanup temporary shadow paths
|
|
rm /etc/*-
|
|
|
|
mappings:
|
|
architecture_map: debian
|