From 464251503ee143ca56ee9b7a3341ca24c102433e Mon Sep 17 00:00:00 2001 From: Luke Kanies Date: Wed, 13 Apr 2005 15:27:29 +0000 Subject: reorganizing git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@99 980ebf18-57e1-0310-9a29-db15c13687c0 --- test/text/selectors | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 test/text/selectors (limited to 'test/text/selectors') 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 -} -- cgit