blob: ca5b25f4cc141ab212bcd46092f760f1084e3fb4 (
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",
}
|