diff options
author | Antoine Beaupré <anarcat@koumbit.org> | 2013-01-07 18:07:17 -0500 |
---|---|---|
committer | Antoine Beaupré <anarcat@koumbit.org> | 2013-01-07 18:07:17 -0500 |
commit | 02644ac0f9e0b8c9ffd1ab722fb63a02dba71c3a (patch) | |
tree | 99d031370b6a21c6e72b20bd753739c6b38be6b1 /README | |
parent | f0d3b2209e3b629c5442bd25d28a5bc855229723 (diff) |
explain how to upgrade from previous versions
Diffstat (limited to 'README')
-rw-r--r-- | README | 23 |
1 files changed, 23 insertions, 0 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 ========== |