Puppet Class: tungsten::tungsten::provision
- Inherits:
- tungsten::tungsten
- Defined in:
- manifests/tungsten/provision.pp
Overview
17 18 19 20 21 22 23 24 25 26 |
# File 'manifests/tungsten/provision.pp', line 17
class tungsten::tungsten::provision (
$donor = "autodetect",
) inherits tungsten::tungsten {
exec { "tungsten::tungsten::provision":
path => ["/bin", "/usr/bin", "/opt/continuent/tungsten/tungsten-replicator"],
environment => "HOME=/root",
logoutput => true,
command => "/opt/continuent/tungsten/tungsten-replicator/scripts/tungsten_provision_slave --source=$donor --restore-to-datadir ",
}
}
|