summaryrefslogtreecommitdiffstats
path: root/examples/svncommit
blob: 350cd85808351209d24a254527399bc006f060c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
$path = "/usr/bin:/bin"

file { "/tmp/svntests":
    recurse => true,
    checksum => md5
}

exec { "echo 'files have been updated'":
    cwd => "/tmp/svntests",
    refreshonly => true,
    require => file["/tmp/svntests"],
    path => $path
}