summaryrefslogtreecommitdiff
path: root/examples/relationships
diff options
context:
space:
mode:
Diffstat (limited to 'examples/relationships')
-rw-r--r--examples/relationships34
1 files changed, 34 insertions, 0 deletions
diff --git a/examples/relationships b/examples/relationships
new file mode 100644
index 000000000..795788947
--- /dev/null
+++ b/examples/relationships
@@ -0,0 +1,34 @@
+# $Id$
+
+#service.setpath("../examples/root/etc/init.d")
+#puppet.statefile("/tmp/puppetstate")
+$path = "../examples/root/etc/configfile"
+ path => "../examples/root/etc/init.d"
+
+
+define files {
+ file { "/tmp/yaytest":
+ ensure => file,
+ mode => 755
+ }
+ file { "/tmp/exists":
+ checksum => md5
+ }
+}
+
+define sleeper {
+ file { $path:
+ mode => 755
+ }
+ service { sleeper:
+ path => "../examples/root/etc/init.d",
+ running => 1
+ }
+}
+
+files { }
+
+sleeper {
+ require => files["yay"],
+ schedule => true
+}