-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathubuntu-xenial
executable file
·36 lines (27 loc) · 1007 Bytes
/
ubuntu-xenial
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
#!/bin/sh
# A working btrfs mount point - any will do as long as root have write access
ZFS_ROOT=p0/subutai
# A folder which is used exclusively for this - can NOT exist and WILL
# be cleaned out when done!
ZFS_BUILD=build
# Set base
BASE=xenial
REP=http://archive.ubuntu.com/ubuntu/
# Repos
REPOS=$(cat <<'END_HEREDOC'
deb http://us.archive.ubuntu.com/ubuntu/ xenial main restricted universe multiverse
deb http://us.archive.ubuntu.com/ubuntu/ xenial-updates main restricted universe multiverse
#deb http://us.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu xenial-security main restricted universe multiverse
END_HEREDOC
)
# Extra base packages to be installed
EXTRA=openssh-server,openssh-client,iputils-ping,less,vim,python,python3
# Install with full repos
#PKGS=vim
# Name of resulting template
NAME=ubuntu-xenial
VERSION=$(git describe --abbrev=0 --tags)
OWNER=subutai
. ./build-template
# vim: ts=4 et nowrap autoindent