993f7c5f78
Naming it after what it installs. Also, split the target cronjob into a define. Change-Id: I73a4383f529c60bc35c60241dfc91508965d755e Reviewed-on: https://review.openstack.org/10885 Reviewed-by: Clark Boylan <clark.boylan@gmail.com> Reviewed-by: James E. Blair <corvus@inaugust.com> Approved: Monty Taylor <mordred@inaugust.com> Tested-by: Jenkins
24 lines
258 B
Puppet
24 lines
258 B
Puppet
class bup {
|
|
package { "bup":
|
|
ensure => present
|
|
}
|
|
|
|
file { "/etc/bup-excludes":
|
|
ensure => present,
|
|
content => "/proc/*
|
|
/sys/*
|
|
/dev/*
|
|
/tmp/*
|
|
/floppy/*
|
|
/cdrom/*
|
|
/var/spool/squid/*
|
|
/var/spool/exim/*
|
|
/media/*
|
|
/mnt/*
|
|
/var/agentx/*
|
|
/run/*
|
|
"
|
|
}
|
|
|
|
}
|