summaryrefslogtreecommitdiffstats
path: root/test/data/snippets/failmissingexecpath.pp
blob: aae1a09fa6666a1415ca779d7cc9003b77736a8b (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 { yay:
    path => "/tmp/execdisttesting",
}