Sha256: ca5c35a3658b13ddd520030ba1154918efbd334c2a3c344af93f865b0644e4d7

Contents?: true

Size: 1.86 KB

Versions: 45

Compression:

Stored size: 1.86 KB

Contents

#
# Author:: AJ Christensen (<aj@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.
#

require 'chef/provider/group/groupadd'
require 'chef/mixin/shell_out'

class Chef
  class Provider
    class Group
      class Gpasswd < Chef::Provider::Group::Groupadd

        include Chef::Mixin::ShellOut

        def load_current_resource
          super

          raise Chef::Exceptions::Group, "Could not find binary /usr/bin/gpasswd for #{@new_resource}" unless ::File.exists?("/usr/bin/gpasswd")
        end

        def modify_group_members
          unless @new_resource.members.empty?
            if(@new_resource.append)
              @new_resource.members.each do |member|
                Chef::Log.debug("#{@new_resource}: appending member #{member} to group #{@new_resource.group_name}")
                shell_out!("gpasswd -a #{member} #{@new_resource.group_name}")
              end
            else
              Chef::Log.debug("#{@new_resource}: setting group members to #{@new_resource.members.join(', ')}")
              shell_out!("gpasswd -M #{@new_resource.members.join(',')} #{@new_resource.group_name}")
            end
          else
            Chef::Log.debug("#{@new_resource}: not changing group members, the group has no members")
          end
        end
      end
    end
  end
end

Version data entries

45 entries across 45 versions & 5 rubygems

Version Path
chef-0.9.18 lib/chef/provider/group/gpasswd.rb
naked-chef-0.9.15.3 lib/chef/provider/group/gpasswd.rb
chef-0.9.16 lib/chef/provider/group/gpasswd.rb
chef-0.10.0.beta.6 lib/chef/provider/group/gpasswd.rb
chef-0.10.0.beta.5 lib/chef/provider/group/gpasswd.rb
chef-0.10.0.beta.4 lib/chef/provider/group/gpasswd.rb
TrueCar-chef-0.10.0.beta.3 lib/chef/provider/group/gpasswd.rb
chef-0.10.0.beta.3 lib/chef/provider/group/gpasswd.rb
chef-0.10.0.beta.2 lib/chef/provider/group/gpasswd.rb
chef-0.10.0.beta.1 lib/chef/provider/group/gpasswd.rb
chef-0.10.0.beta.0 lib/chef/provider/group/gpasswd.rb
naked-chef-0.9.15.2 lib/chef/provider/group/gpasswd.rb
naked-chef-0.9.15.1 lib/chef/provider/group/gpasswd.rb
chef-0.9.14 lib/chef/provider/group/gpasswd.rb
chef-0.9.14.rc.1 lib/chef/provider/group/gpasswd.rb
mbailey-chef-0.9.12.2 lib/chef/provider/group/gpasswd.rb
chef-0.9.14.beta.1 lib/chef/provider/group/gpasswd.rb
mbailey-chef-0.9.12.1 lib/chef/provider/group/gpasswd.rb
chef-0.9.12 lib/chef/provider/group/gpasswd.rb
chef-0.9.10 lib/chef/provider/group/gpasswd.rb