diff options
-rw-r--r-- | README | 23 | ||||
-rw-r--r-- | templates/index.html.erb | 10 |
2 files changed, 28 insertions, 5 deletions
@@ -1,3 +1,26 @@ +Reprepro module for Puppet +========================== + +This module allows you to create a reprepro install easily. It can +configure cron or a inotify daemon to process the incoming queue and +takes care of configuration, user creation and so on. + +Upgrading from previous versions +================================ + +Older version were using a single monolithic class with global +variables. We are now using a parametrized class instead, so you need +to port your manifests. + +Instead of: + + $reprepro_origin = 'example.com' + include reprepro + +... you should use: + + class { 'reprepro': origin => 'example.com } + Parameters ========== diff --git a/templates/index.html.erb b/templates/index.html.erb index e4c70cb..7990d51 100644 --- a/templates/index.html.erb +++ b/templates/index.html.erb @@ -14,13 +14,13 @@ it for yourself, but it comes at no warranty. <p>In your /etc/apt/source.list: <pre> -deb http://debian.<%= @domain %>/debian lenny main -deb-src http://debian.<%= @domain %>/debian lenny main +deb http://debian.<%= @domain %>/debian stable main +deb-src http://debian.<%= @domain %>/debian stable main </pre> -"lenny", of course, can be replaced by your distribution. Know that we usually -package straight for etch or lenny. Packages will likely not be available in -squeeze or sid.</p> +<code>stable</code> can be replaced by <code>testing</code> +or <code>unstable</code> if you wish to test the development version +of packages.</p> <h2>Adding the archive key to your keyring</h2> |