diff options
author | gjb <gjb@FreeBSD.org> | 2014-10-29 17:04:09 +0000 |
---|---|---|
committer | gjb <gjb@FreeBSD.org> | 2014-10-29 17:04:09 +0000 |
commit | be176f72fe4aae01058f956718665299e1604d4e (patch) | |
tree | d8ba5ba8043c93ac7edf92e7e5d9da98c21ec4e3 /release/tools | |
parent | a452e67d0444028810849a32f47e3267b5d9560a (diff) | |
download | FreeBSD-src-be176f72fe4aae01058f956718665299e1604d4e.zip FreeBSD-src-be176f72fe4aae01058f956718665299e1604d4e.tar.gz |
Initial commit providing a mechanism to create
openstack images as part of the release build.
This mimics the way Microsoft Azure images are
built, with the addition of installing the
net/cloud-init package and adding a (commented)
rc.conf(5) entry for cloudinit.
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'release/tools')
-rw-r--r-- | release/tools/openstack.conf | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/release/tools/openstack.conf b/release/tools/openstack.conf new file mode 100644 index 0000000..faa6ee2 --- /dev/null +++ b/release/tools/openstack.conf @@ -0,0 +1,10 @@ +#!/bin/sh +# +# $FreeBSD$ +# + +# Set to a list of packages to install. +export VM_EXTRA_PACKAGES="net/cloud-init" + +# Set to a list of third-party software to enable in rc.conf(5). +export VM_RC_LIST="#cloudinit" |