aboutsummaryrefslogtreecommitdiff
path: root/manifests/web.pp
blob: caf031a73154fa078f0f0afd97aa5a08562f3589 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
class nodo::web inherits nodo::vserver {
  # Class for web nodes
  include websites
  include database
  include users::virtual
  include utils::web

  # Reprepro configuration
  $reprepro_basedir = '/var/reprepro'

  case $reprepro {
    'enabled': {
      include reprepro::cron
    }
    default: {
      include reprepro::cron::disabled
    }
  }

  if $git_daemon != false {
    include git-daemon
  }

  backupninja::svn { "svn":
    src => "/var/svn",
  }

  backupninja::mysql { "all_databases":
  	backupdir => '/var/backups/mysql',
  	compress  => true,
  	sqldump   => true,
  }
}