summaryrefslogtreecommitdiffstats
path: root/test/text/selectors
diff options
context:
space:
mode:
Diffstat (limited to 'test/text/selectors')
-rw-r--r--test/text/selectors27
1 files changed, 0 insertions, 27 deletions
diff --git a/test/text/selectors b/test/text/selectors
deleted file mode 100644
index 7a2b26357..000000000
--- a/test/text/selectors
+++ /dev/null
@@ -1,27 +0,0 @@
-# $Id$
-
-platform = :sunos
-
-funtest = platform ? {
- :sunos => "yayness"
- :aix => :goodness
- :default => "badness"
-}
-
-# this is a comment
-
-sleeper = service["sleeper"] {
- :owner => platform ? {
- :sunos => "luke"
- :default => "root"
- },
- # this is a bit retarded, because we'll get a null value if we're not on sunos
- # but we don't currently allow selectors as parameter statements...
- :group => platform ? :sunos => :luke
-}
-
-# i guess it has to be solved this way...
-
-platform ? :sunos => service["sleeper"] {
- :group => :luke
-}