Sha256: d5757c0bfd6f34402a648b26b13eab0a6bc50a7019374d68557be6341818b1e7

Contents?: true

Size: 1.61 KB

Versions: 38

Compression:

Stored size: 1.61 KB

Contents

#
# Cookbook Name:: splunk
# Recipe:: setup_auth
#
# 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.
#
include_recipe 'chef-vault'

splunk_auth_info = chef_vault_item(node['splunk']['auth']['data_bag'], node['splunk']['auth']['data_bag_item'])['auth']
user, pw = splunk_auth_info.split(':')


if node['platform_family'] != 'windows'
  guard_path = "#{splunk_dir}/etc/.setup_#{user}_password"
  file "guard setup_#{user}_password" do
    path guard_path
    content 'true\n'
    owner node['splunk']['user']['username']
    group node['splunk']['user']['username']
    mode 00600
    action :nothing
  end
else
  guard_path = "#{splunk_dir}\\etc\\setup_#{user}_password"
  file "guard setup_#{user}_password" do
    path guard_path
    content 'true\n'
    action :nothing
  end
end

execute 'change-admin-user-password-from-default' do
  command "\"#{splunk_cmd}\" edit user #{user} -password '#{pw}' -role admin -auth admin:changeme"
  not_if { ::File.exist?(guard_path) }
  notifies :create, "file[guard setup_#{user}_password]", :immediately
end

Version data entries

38 entries across 38 versions & 1 rubygems

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