From 9ca0aab3ea2842ab9e24422d862c122b64b12645 Mon Sep 17 00:00:00 2001 From: Alex Monk Date: Sat, 6 Aug 2016 17:57:03 +0000 Subject: [PATCH] Require bup package before installing cron Change-Id: I3808493afc38975831184946af7113d45edac7a0 --- manifests/site.pp | 1 + 1 file changed, 1 insertion(+) diff --git a/manifests/site.pp b/manifests/site.pp index 0a79a2f..2a1fe3e 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -17,5 +17,6 @@ define bup::site( monthday => $cron_monthday, month => $cron_month, command => "tar -X /etc/bup-excludes -cPf - / | bup split -r ${backup_user}@${backup_server}: -n root -q", + require => Package['bup'], } }