diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/desktop.pp | 18 |
1 files changed, 8 insertions, 10 deletions
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', - } } |