From a1a7ae4cf77b4161b6874e60ab06078bf4e6f081 Mon Sep 17 00:00:00 2001 From: Luke Kanies Date: Fri, 22 Apr 2005 18:43:50 +0000 Subject: moving to the language tree git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@212 980ebf18-57e1-0310-9a29-db15c13687c0 --- examples/objects | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 examples/objects (limited to 'examples/objects') diff --git a/examples/objects b/examples/objects deleted file mode 100644 index 4c4e6cf8b..000000000 --- a/examples/objects +++ /dev/null @@ -1,25 +0,0 @@ -type = filetype["colon-separated"] { - :recordseparator => "\n" - :fieldseparator => "\n" - :fields = %{name password uid gid ....} - :namefield = "name" -} - -passwd = filetype["colon-separated"].new("/etc/passwd") -shadow = filetype["colon-separated"].new("/etc/shadow") - -user = jointype { - passwd => "name" - shadow => "name" -} - -passwd = type["/etc/passwd"] - - -user.new() - - -passwd["yaytest"] = { - :uid => 100 - ... -} -- cgit