blob: 7ea6fdfb73a844e461cc76e9697f40af845edf99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# container-tools - Manage systemd-nspawn containers
#
# example for automated Debian 10 (buster) based container creation
# using: sudo container create -s debian
debconf debconf/priority select critical
debconf debconf/frontend select Noninteractive
container-tools cnt-debconf/mode select debian
#container-tools cnt-debconf/preseed-files string
#container-tools cnt-debconf/include-preseed-files string
container-tools cnt-debconf/distribution select buster
#container-tools cnt-debconf/parent-distribution select
container-tools cnt-debconf/architecture select auto
container-tools cnt-debconf/archives multiselect buster-security, buster-updates
#container-tools cnt-debconf/parent-archives multiselect
container-tools cnt-debconf/mirror string https://deb.debian.org/debian
container-tools cnt-debconf/mirror-security string http://security.debian.org
#container-tools cnt-debconf/parent-mirror string
#container-tools cnt-debconf/parent-mirror-security string
container-tools cnt-debconf/archive-areas multiselect main
#container-tools cnt-debconf/parent-archive-areas multiselect
container-tools cnt-debconf/packages string openssh-server
container-tools cnt-debconf/root-password string debian
#container-tools cnt-debconf/root-password-crypted string
container-tools cnt-debconf/network1/bridge string bridge0
#container-tools cnt-debconf/network-mac string
|