summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/distributions.erb28
-rw-r--r--templates/inoticoming.default.erb2
-rw-r--r--templates/reprepro-export-key.sh.erb18
3 files changed, 7 insertions, 41 deletions
diff --git a/templates/distributions.erb b/templates/distributions.erb
index 350d4da..0e98142 100644
--- a/templates/distributions.erb
+++ b/templates/distributions.erb
@@ -2,44 +2,28 @@
Origin: <%= @origin %>
Label: <%= @origin %>
-Suite: oldstable
-Pull: stable
-Codename: lenny
-Version: 5.0
-Architectures: <%= @architectures.join(' ') %>
-Components: main non-free contrib
-Description: <%= @origin %> specific (or backported) packages
-SignWith: <%= signwith %>
-Uploaders: uploaders
-
-Origin: <%= @origin %>
-Label: <%= @origin %>
Suite: stable
Pull: testing
-Codename: squeeze
-Version: 6.0
+Codename: stable
Architectures: <%= @architectures.join(' ') %>
Components: main non-free contrib
-Description: <%= @origin %> specific (or backported) packages
-SignWith: <%= signwith %>
Uploaders: uploaders
Origin: <%= @origin %>
Label: <%= @origin %>
Suite: testing
-Codename: wheezy
+Pull: unstable
+Codename: testing
Architectures: <%= @architectures.join(' ') %>
Components: main non-free contrib
-Description: <%= @origin %> specific (or backported) packages
-SignWith: <%= signwith %>
+SignWith: yes
Uploaders: uploaders
Origin: <%= @origin %>
Label: <%= @origin %>
Suite: unstable
-Codename: sid
+Codename: unstable
Architectures: <%= @architectures.join(' ') %>
Components: main non-free contrib
-Description: <%= @origin %> specific (or backported) packages
-SignWith: <%= signwith %>
+SignWith: yes
Uploaders: uploaders
diff --git a/templates/inoticoming.default.erb b/templates/inoticoming.default.erb
index a298a16..dd4d55d 100644
--- a/templates/inoticoming.default.erb
+++ b/templates/inoticoming.default.erb
@@ -5,7 +5,7 @@
# for an explanation of options and actions, see inoticoming(1)
# user to run inoticoming as
-USER=reprepro
+USER=<%= @user %>
# log to some file instead of syslog
# required if you want to use --stdout-to-log or --stderr-to-log in actions
diff --git a/templates/reprepro-export-key.sh.erb b/templates/reprepro-export-key.sh.erb
deleted file mode 100644
index bbc195c..0000000
--- a/templates/reprepro-export-key.sh.erb
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-#
-# This file is managed by Puppet. Do not edit, any changes will be overwritten!
-#
-
-set -e
-
-KEY="$(gpg --homedir '<%= @basedir %>/.gnupg' --with-colon --list-secret-keys | cut -d : -f 5 | head -n 1)"
-
-if [ -n "$KEY" ]; then
- TEMPFILE=$(mktemp --tmpdir='<%= @basedir %>')
- trap "rm -f '$TEMPFILE'" EXIT
- DESTFILE='<%= @basedir %>/key.asc'
- gpg --homedir '<%= @basedir %>/.gnupg' --export --armor "$KEY" > "$TEMPFILE"
- mv "$TEMPFILE" "$DESTFILE"
- chown reprepro:reprepro "$DESTFILE"
- chmod 0664 "$DESTFILE"
-fi