Files
debos/doc/examples/example.yaml
Daniel Stone e5129ac453 doc/examples: Actually use suite variable
We declared the suite variable (defaulting to stretch), but only used it
for the filename and not for building the OS, which took a hardcoded
suite name.

Use the suite variable in OS building, changing the default to buster to
match the previous hard-coding.

Signed-off-by: Daniel Stone <daniels@collabora.com>
2019-04-16 15:48:28 +02:00

35 lines
757 B
YAML

{{- $architecture := or .architecture "arm64" -}}
{{- $suite := or .suite "buster" -}}
{{ $image := or .image (printf "debian-%s-%s.tgz" $suite $architecture) }}
architecture: {{ $architecture }}
actions:
- action: debootstrap
suite: {{ $suite }}
components:
- main
- contrib
- non-free
mirror: https://deb.debian.org/debian
variant: minbase
- action: apt
description: Install some packages
packages: [ sudo, openssh-server, adduser, systemd-sysv, firmware-linux ]
- action: run
chroot: true
script: setup-user.sh
- action: overlay
source: overlays/sudo
- action: run
chroot: true
command: echo debian > /etc/hostname
- action: pack
file: {{ $image }}
compression: gz