From 6c67736465ccd739b5df49a0a554e3e0cf26684b Mon Sep 17 00:00:00 2001 From: Norbert Varzariu Date: Tue, 22 Dec 2015 14:58:58 +0100 Subject: [PATCH] update README with more complete examples and default values --- README.md | 50 -------------------------------------------------- 1 file changed, 50 deletions(-) diff --git a/README.md b/README.md index 1ebf653..db57723 100644 --- a/README.md +++ b/README.md @@ -304,56 +304,6 @@ Default is: } ``` -####`$cron` -Hash. Set time ranges for different backup levels. -Hash is of the form: -```puppet -cron =>{ - daily => { - minute => param, - hour => param, - } - weekly => { - minute => param, - hour => param, - } - {...} -} -``` -(Default: -```puppet - $cron = { - hourly => { - minute => '0..59', - hour => '*', - monthday => '*', - month => '*', - weekday => '*', - }, - daily => { - minute => '0..59', - hour => '0..23', - monthday => '*', - month => '*', - weekday => '*', - }, - weekly => { - minute => '0..59', - hour => '0..23', - monthday => '*', - month => '*', - weekday => '0..6', - }, - monthly => { - minute => '0..59', - hour => '0..23', - monthday => '0..28', - month => '*', - weekday => '*', - }, - } -``` - ####`$snapshot_root` global. the directory holding your backups. (Default: /backup)