Sha256: 8f1ea97aaac09ef905bc08b0d41223e29b7079770a52f4811b18dec73a0eda26

Contents?: true

Size: 1.15 KB

Versions: 38

Compression:

Stored size: 1.15 KB

Contents

#
# Cookbook Name:: splunk
# Recipe:: user
#
# Author: Joshua Timberman <joshua@getchef.com>
# Copyright (c) 2014, Chef Software, Inc <legal@getchef.com>
#
# 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.
#

if node['platform_family'] != 'windows'
  group node['splunk']['user']['username'] do
    gid node['splunk']['user']['uid'].to_i # CHEF-4927
    system true if %w(linux).include?(node['os'])
  end

  user node['splunk']['user']['username'] do
    comment node['splunk']['user']['comment']
    shell node['splunk']['user']['shell']
    gid node['splunk']['user']['username']
    uid node['splunk']['user']['uid']
    system true if %w(linux).include?(node['os'])
  end
end

Version data entries

38 entries across 38 versions & 1 rubygems

Version Path
cloud-mu-3.6.3 cookbooks/mu-splunk/recipes/user.rb
cloud-mu-3.5.1 cookbooks/mu-splunk/recipes/user.rb
cloud-mu-3.5.0 cookbooks/mu-splunk/recipes/user.rb
cloud-mu-3.4.0 cookbooks/mu-splunk/recipes/user.rb
cloud-mu-3.3.2 cookbooks/mu-splunk/recipes/user.rb
cloud-mu-3.3.1 cookbooks/mu-splunk/recipes/user.rb
cloud-mu-3.3.0 cookbooks/mu-splunk/recipes/user.rb
cloud-mu-3.2.0 cookbooks/mu-splunk/recipes/user.rb
cloud-mu-3.1.6 cookbooks/mu-splunk/recipes/user.rb
cloud-mu-3.1.5 cookbooks/mu-splunk/recipes/user.rb
cloud-mu-3.1.4 cookbooks/mu-splunk/recipes/user.rb
cloud-mu-3.1.3 cookbooks/mu-splunk/recipes/user.rb
cloud-mu-3.1.2 cookbooks/mu-splunk/recipes/user.rb
cloud-mu-3.1.2beta2 cookbooks/mu-splunk/recipes/user.rb
cloud-mu-3.1.1 cookbooks/mu-splunk/recipes/user.rb
cloud-mu-3.1.0 cookbooks/mu-splunk/recipes/user.rb
cloud-mu-3.0.2 cookbooks/mu-splunk/recipes/user.rb
cloud-mu-3.0.1 cookbooks/mu-splunk/recipes/user.rb
cloud-mu-3.0.0 cookbooks/mu-splunk/recipes/user.rb
cloud-mu-3.0.0beta cookbooks/mu-splunk/recipes/user.rb