blob: 67705b4beeb915f8a6a6f534ff1a0180a823913b (
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
|
# 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
compute-tools cnt-debconf/mode select debian
#compute-tools cnt-debconf/preseed-files string
#compute-tools cnt-debconf/include-preseed-files string
compute-tools cnt-debconf/distribution select buster
#compute-tools cnt-debconf/parent-distribution select
compute-tools cnt-debconf/architecture select auto
compute-tools cnt-debconf/archives multiselect buster-security, buster-updates
#compute-tools cnt-debconf/parent-archives multiselect
compute-tools cnt-debconf/mirror string https://deb.debian.org/debian
compute-tools cnt-debconf/mirror-security string http://security.debian.org
#compute-tools cnt-debconf/parent-mirror string
#compute-tools cnt-debconf/parent-mirror-security string
compute-tools cnt-debconf/archive-areas multiselect main
#compute-tools cnt-debconf/parent-archive-areas multiselect
compute-tools cnt-debconf/packages string openssh-server
compute-tools cnt-debconf/root-password string debian
#compute-tools cnt-debconf/root-password-crypted string
compute-tools cnt-debconf/network1/bridge string bridge0
#compute-tools cnt-debconf/network-mac string
|