From 13edd641afc73dea952eaf06dfbe5a401c349fbf Mon Sep 17 00:00:00 2001 From: mycognosist Date: Mon, 30 Nov 2020 13:39:21 +0000 Subject: [PATCH] Add Freight configuration template --- conf/templates/debian_repo/freight.conf | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 conf/templates/debian_repo/freight.conf diff --git a/conf/templates/debian_repo/freight.conf b/conf/templates/debian_repo/freight.conf new file mode 100644 index 0000000..40b731f --- /dev/null +++ b/conf/templates/debian_repo/freight.conf @@ -0,0 +1,23 @@ +# Freight configuration. + +# Directories for the Freight library and Freight cache. Your web +# server's document root should be `$VARCACHE`. +VARLIB="{{freight_lib_path}}" +VARCACHE="{{freight_cache_path}}" + +# Default `Origin` and `Label` fields for `Release` files. +ORIGIN="apt.peachcloud.org" +LABEL="PeachCloud" + +# Cache the control files after each run (on), or regenerate them every +# time (off). +CACHE="off" + +# GPG key to use to sign repositories. This is required by the `apt` +# repository provider. Use `gpg --gen-key` (see `gpg`(1) for more +# details) to generate a key and put its email address here. +GPG="{{gpg_key_email}}" + +# Whether to follow symbolic links in `$VARLIB` to produce extra components +# in the cache directory (on) or not (off). +SYMLINKS="off"