diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-01-17 07:11:50 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-01-17 07:11:50 +0000 |
commit | 3700b37e2386e7dbaabd90b7ba13c3dce06203d2 (patch) | |
tree | 28a691598edd5e56332c0d8e254263fb4fe8a9f4 /examples/code/snippets/failmissingexecpath.pp | |
parent | 92a780a3106f863e442c12897184abbe39fe3310 (diff) | |
download | puppet-3700b37e2386e7dbaabd90b7ba13c3dce06203d2.tar.gz puppet-3700b37e2386e7dbaabd90b7ba13c3dce06203d2.tar.xz puppet-3700b37e2386e7dbaabd90b7ba13c3dce06203d2.zip |
Adding an "ensure" state where appropriate, and significantly reworking the builtin docs.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@832 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'examples/code/snippets/failmissingexecpath.pp')
-rw-r--r-- | examples/code/snippets/failmissingexecpath.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/code/snippets/failmissingexecpath.pp b/examples/code/snippets/failmissingexecpath.pp index 3f43be325..fe17b049b 100644 --- a/examples/code/snippets/failmissingexecpath.pp +++ b/examples/code/snippets/failmissingexecpath.pp @@ -1,6 +1,6 @@ define distloc(path) { file { "/tmp/exectesting1": - create => file + ensure => file } exec { "touch $path": subscribe => file["/tmp/exectesting1"], |