Sha256: 60b6cf35d7fdd529ac899692c9787f361594a1b7afe1f952ca9beb605acd9619

Contents?: true

Size: 1.79 KB

Versions: 9

Compression:

Stored size: 1.79 KB

Contents

#
# Author:: Marc Paradise (<marc@chef.io>)
# Copyright:: Copyright (c) Chef Software 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 Knife
    class OrgUserAdd < Knife
      category "CHEF ORGANIZATION MANAGEMENT"
      banner "knife org user add ORG_NAME USER_NAME"
      attr_accessor :org_name, :username

      option :admin,
        long: "--admin",
        short: "-a",
        description: "Add user to admin group"

      deps do
        require "chef/org"
      end

      def run
        @org_name, @username = @name_args

        if !org_name || !username
          ui.fatal "You must specify an ORG_NAME and USER_NAME"
          show_usage
          exit 1
        end

        org = Chef::Org.new(@org_name)
        begin
          org.associate_user(@username)
        rescue Net::HTTPServerException => e
          if e.response.code == "409"
            ui.msg "User #{username} already associated with organization #{org_name}"
          else
            raise e
          end
        end
        if config[:admin]
          org.add_user_to_group("admins", @username)
          org.add_user_to_group("billing-admins", @username)
          ui.msg "User #{username} is added to admins and billing-admins group"
        end
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
knife-17.7.16 lib/chef/knife/org_user_add.rb
knife-17.5.22 lib/chef/knife/org_user_add.rb
knife-17.4.47 lib/chef/knife/org_user_add.rb
knife-17.4.46 lib/chef/knife/org_user_add.rb
knife-17.4.18 lib/chef/knife/org_user_add.rb
knife-17.3.48 lib/chef/knife/org_user_add.rb
knife-17.3.13 lib/chef/knife/org_user_add.rb
knife-17.2.38 lib/chef/knife/org_user_add.rb
knife-17.2.18 lib/chef/knife/org_user_add.rb