summaryrefslogtreecommitdiffstats
path: root/test/text/selectors
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2005-04-13 15:27:29 +0000
committerLuke Kanies <luke@madstop.com>2005-04-13 15:27:29 +0000
commit464251503ee143ca56ee9b7a3341ca24c102433e (patch)
treedd2e3c86030a6e337e5f552478fe6ce1a0b2a42f /test/text/selectors
parent5807dced2619245be1da35d2df7505fea678a781 (diff)
reorganizing
git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@99 980ebf18-57e1-0310-9a29-db15c13687c0
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
-}