Warning, /plasma-bigscreen/bigscreen-debos-image-rpi4/recipes/ubuntu-repos.yml is written in an unsupported language. File is not indexed.

0001 {{- $architecture := or .architecture "arm64" -}}
0002 {{- $firmware_version := or .firmware_version "master" -}}
0003 {{ $suite :=  or .suite "bionic" }}
0004 {{- $image := or .image "mycroft-mark2-rpi4.img" -}}
0005 
0006 architecture: {{ $architecture }}
0007 
0008 actions:
0009   - action: debootstrap
0010     keyring-package: ubuntu-keyring
0011     keyring-file: ubuntu-archive-keyring.gpg
0012     suite: {{ $suite }}
0013     components:
0014       - main
0015       - restricted
0016       - multiverse
0017       - universe
0018     mirror: http://ports.ubuntu.com/ubuntu-ports
0019     variant: minbase
0020 
0021   - action: run
0022     description: Add bionic-updates apt repo
0023     chroot: true
0024     command: echo "deb http://ports.ubuntu.com/ubuntu-ports {{ $suite }}-updates main restricted multiverse universe" >> /etc/apt/sources.list
0025 
0026   - action: run
0027     description: Add bionic-backports apt repo
0028     chroot: true
0029     command: echo "deb http://ports.ubuntu.com/ubuntu-ports {{ $suite }}-backports main restricted multiverse universe" >> /etc/apt/sources.list
0030  
0031   - action: apt
0032     packages:
0033       - gnupg
0034       - wget
0035       - curl
0036       - apt-transport-https
0037       - software-properties-common
0038       - linux-firmware
0039       - kmod
0040