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