From: Silvio Rhatto Date: Fri, 9 Jul 2010 15:23:47 +0000 (-0300) Subject: Using $backup_when for nodo::desktop::minimal X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=aa19722d2e8c0ea13f2a44e8d4172954abae9a8e;p=puppet-nodo.git Using $backup_when for nodo::desktop::minimal --- diff --git a/manifests/desktop.pp b/manifests/desktop.pp index e01a713..6855a0b 100644 --- a/manifests/desktop.pp +++ b/manifests/desktop.pp @@ -25,19 +25,17 @@ class nodo::desktop inherits nodo::personal { } class nodo::desktop::minimal { - $fstab = false - $crypttab = false - $xorg = false - $pam = false + $fstab = false + $crypttab = false + $xorg = false + $pam = false + + # Backups should happen when the box are likely to be online + $backup_when = 'everyday at 12:00' # Apt is disabled as it's not ready for ubuntu - $use_apt = false + $use_apt = false # Desktop class include nodo::desktop - - # Backups should happen when the box are likely to be online - backupninja::config { 'desktop': - when => 'everyday at 12:00', - } }