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
34
|
# File 'manifests/replicainstall.pp', line 1
define ipa::replicainstall (
$host = $name,
$adminpw = {},
$dspw = {}
) {
$file = "/var/lib/ipa/replica-info-${host}.gpg"
Exec["replicainfocheck-${host}"] ~> Exec["clientuninstall-${host}"] ~> Exec["replicainstall-${host}"] ~> Exec["removereplicainfo-${host}"]
exec { "replicainfocheck-${host}":
command => "/usr/bin/test -e ${file}",
tries => '60',
try_sleep => '60',
unless => "/usr/sbin/ipactl status >/dev/null 2>&1"
}
exec { "clientuninstall-${host}":
command => "/usr/sbin/ipa-client-install --uninstall --unattended",
refreshonly => true
}
exec { "replicainstall-${host}":
command => "/usr/sbin/ipa-replica-install --admin-password=${adminpw} --password=${dspw} --skip-conncheck --unattended ${file}",
timeout => '0',
logoutput => "on_failure",
refreshonly => true
}
exec { "removereplicainfo-${host}":
command => "/bin/rm -f ${file}",
refreshonly => true
}<- notify { "Running IPA replica install, please wait.": }
}
|