Clean out old watcher pause files automatically
[mirror/dsa-puppet.git] / modules / ganeti2 / manifests / init.pp
1 # = Class: ganeti2
2 #
3 # Standard ganeti2 config debian.org hosts
4 #
5 # == Sample Usage:
6 #
7 #   include ganeti2
8 #
9 class ganeti2 {
10
11         include ganeti2::params
12         include ganeti2::firewall
13
14         $drbd = $ganeti2::params::drbd
15
16         package { 'ganeti':
17                 ensure => installed
18         }
19
20         site::linux_module { 'tun': }
21
22         file { '/etc/cron.hourly/puppet-cleanup-watcher-pause-file':
23                 source => 'puppet:///modules/ganeti2/cleanup-watcher-pause-file',
24                 mode    => '0555',
25         }
26 }