summaryrefslogtreecommitdiff
path: root/lib/chef/resource/group.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/resource/group.rb')
-rw-r--r--lib/chef/resource/group.rb83
1 files changed, 83 insertions, 0 deletions
diff --git a/lib/chef/resource/group.rb b/lib/chef/resource/group.rb
new file mode 100644
index 0000000000..76f3a779ae
--- /dev/null
+++ b/lib/chef/resource/group.rb
@@ -0,0 +1,83 @@
+#
+# Author:: Adam Jacob (<adam@opscode.com>)
+# Author:: Tyler Cloke (<tyler@opscode.com>)
+# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# License:: Apache License, Version 2.0
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+class Chef
+ class Resource
+ class Group < Chef::Resource
+
+ identity_attr :group_name
+
+ state_attrs :members
+
+ def initialize(name, run_context=nil)
+ super
+ @resource_name = :group
+ @group_name = name
+ @gid = nil
+ @members = []
+ @action = :create
+ @append = false
+ @allowed_actions.push(:create, :remove, :modify, :manage)
+ end
+
+ def group_name(arg=nil)
+ set_or_return(
+ :group_name,
+ arg,
+ :kind_of => [ String ]
+ )
+ end
+
+ def gid(arg=nil)
+ set_or_return(
+ :gid,
+ arg,
+ :kind_of => [ String, Integer ]
+ )
+ end
+
+ def members(arg=nil)
+ converted_members = arg.is_a?(String) ? [].push(arg) : arg
+ set_or_return(
+ :members,
+ converted_members,
+ :kind_of => [ Array ]
+ )
+ end
+
+ alias_method :users, :members
+
+ def append(arg=nil)
+ set_or_return(
+ :append,
+ arg,
+ :kind_of => [ TrueClass, FalseClass ]
+ )
+ end
+
+ def system(arg=nil)
+ set_or_return(
+ :system,
+ arg,
+ :kind_of => [ TrueClass, FalseClass ]
+ )
+ end
+ end
+ end
+end