Split out bup module
The spec: http://specs.openstack.org/openstack-infra/infra-specs/specs/puppet-modules.html Change-Id: I242a7832dbd8559b6aa3c590737706efd1d1c28f Depends-On: I34ab6f716f8ecf5c67f6b5e9a28ac23f42d35e13
This commit is contained in:
parent
0ff4b80c3f
commit
ad62fb43a6
@ -58,6 +58,7 @@ SOURCE_MODULES["https://github.com/puppet-community/puppet-module-puppetboard"]=
|
||||
# Add modules that should be part of the openstack-infra integration test here
|
||||
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-ansible"]="origin/master"
|
||||
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-asterisk"]="origin/master"
|
||||
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-bup"]="origin/master"
|
||||
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-elasticsearch"]="origin/master"
|
||||
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-etherpad_lite"]="origin/master"
|
||||
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-elastic_recheck"]="origin/master"
|
||||
|
@ -1,13 +0,0 @@
|
||||
/proc/*
|
||||
/sys/*
|
||||
/dev/*
|
||||
/tmp/*
|
||||
/floppy/*
|
||||
/cdrom/*
|
||||
/var/spool/squid/*
|
||||
/var/spool/exim/*
|
||||
/media/*
|
||||
/mnt/*
|
||||
/var/agentx/*
|
||||
/run/*
|
||||
/root/backup-restore-*
|
@ -1,12 +0,0 @@
|
||||
# Class: bup
|
||||
#
|
||||
class bup {
|
||||
package { 'bup':
|
||||
ensure => present,
|
||||
}
|
||||
|
||||
file { '/etc/bup-excludes':
|
||||
ensure => present,
|
||||
source => 'puppet:///modules/bup/etc/bup-excludes',
|
||||
}
|
||||
}
|
@ -1,13 +0,0 @@
|
||||
# Define: bup::site
|
||||
#
|
||||
define bup::site(
|
||||
$backup_user,
|
||||
$backup_server
|
||||
) {
|
||||
cron { "bup-${name}":
|
||||
user => 'root',
|
||||
hour => '5',
|
||||
minute => '37',
|
||||
command => "tar -X /etc/bup-excludes -cPf - / | bup split -r ${backup_user}@${backup_server}: -n root -q",
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user