blob: fe17b049b63d883597f46ccba517afaad457dc0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
define distloc(path) {
file { "/tmp/exectesting1":
ensure => file
}
exec { "touch $path":
subscribe => file["/tmp/exectesting1"],
refreshonly => true
}
}
distloc {
path => "/tmp/execdisttesting",
}
|