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