mirror of
https://github.com/outbackdingo/debos.git
synced 2026-01-27 18:18:45 +00:00
23 lines
499 B
YAML
23 lines
499 B
YAML
---
|
|
{{- $architecture := or .architecture "amd64"}}
|
|
{{- $suite := or .suite "bookworm"}}
|
|
{{- $tool := or .tool "debootstrap" }}
|
|
architecture: {{$architecture}}
|
|
|
|
actions:
|
|
- action: {{ $tool }}
|
|
suite: {{ $suite }}
|
|
variant: minbase
|
|
merged-usr: true
|
|
{{- if eq $tool "mmdebstrap" }}
|
|
dpkg-opts:
|
|
- path-exclude=/usr/share/man/*
|
|
apt-opts:
|
|
- Apt::Install-Recommends "true"
|
|
{{- end }}
|
|
|
|
- action: apt
|
|
description: Install some base packages
|
|
packages:
|
|
- procps
|