Skip to content

Commit f475f7f

Browse files
committed
added a blank debian template
1 parent c6767ff commit f475f7f

1 file changed

Lines changed: 68 additions & 0 deletions

File tree

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
#@CLOUD-TEMPLATE-PROFILE
2+
3+
## Example for Debian
4+
5+
# Metadata and defaults file for Disk-Image-Script's gen_cloud_template.sh
6+
# This will overwrite anything in init.arch.local.
7+
# supported values are "arch", "debian", and "redhat"
8+
OSTYPE="debian"
9+
10+
FILEFORMAT=0
11+
COMPRESS_IMAGE="Y"
12+
COMPRESS_OPTS=""
13+
14+
## Debian Specific Options
15+
# If OSTYPE is "debian", this can be specified
16+
DEBMIRROR="http://deb.debian.org/debian/"
17+
DEBDISTRO="stable"
18+
### Project Metadata ###
19+
20+
# Name of project, version, and the OS Archecture. Arch follows same standards
21+
# As upstream Arch Linux. 0 and null versions will be ignored.
22+
PROJECT_NAME="Unknown Debian Project"
23+
PROJECT_VER=0
24+
PROJECT_ARCH="any"
25+
PROJECT_DESCRIPTION="" # Optional
26+
27+
# Name and Contact of maintainers. This section is optional
28+
AUTHOR_NAME="Unknown Author"
29+
AUTHOR_ORG="" #Organization
30+
AUTHOR_EMAIL=""
31+
AUTHOR_GPG_SIG="" # Must match AUTHOR_EMAIL
32+
# space seperated list of additional contact info in the format of
33+
# protocol:address. Example. for IRC use IRC:<NETWORK>:<NICK|IRC address>
34+
#AUTHOR_CONTACT="protocol1:address protocol2:instance:address"
35+
36+
### /Project Metadata ###
37+
38+
### System Info ###
39+
# This will overwrite init.arch.local
40+
41+
# Size of initial image for base install. NOTE the final image gets reduced with
42+
# shrinkwrap to the smallest possible size
43+
#IMGSIZE=20480 # 20GB
44+
45+
#Posix Timezone. Images created with this template will use this timezone. UTC
46+
# is the default. see timedatectl list-timezones for valid entries
47+
TIMEZONE="UTC"
48+
49+
# Added for future compatibility. Does nothing, and EXT4 will always be used
50+
FILESYSTEM="ext4"
51+
52+
# Name of kernel package. Default is Long Term Support Kernel "linux-lts"
53+
KERNEL="linux-image-cloud-amd64" # Debian-based
54+
55+
# As of now, only extlinux(extlinux) is supported. Added for future compatibility
56+
BOOTLOADER="extlinux" # Use for Debian
57+
58+
# List of additional services to enable.
59+
SYSTEMSERVICES=""
60+
61+
# List of additional packages to install, beyond base. Text editors are not
62+
# provided by default. It would be wise to pick one
63+
EXTRAPACKAGES="nano"
64+
#EXTRA_PACKAGES="nano vi emacs-nox"
65+
66+
# List of extra kernel modules to be included in the initcpio image
67+
EXTRAINTMODULES=""
68+
### /System Info ###

0 commit comments

Comments
 (0)