82 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
#
 | 
						|
# Cookbook Name:: kosmos-base
 | 
						|
# Recipe:: default
 | 
						|
#
 | 
						|
# The MIT License (MIT)
 | 
						|
#
 | 
						|
# Copyright:: 2019, Kosmos Developers
 | 
						|
#
 | 
						|
# Permission is hereby granted, free of charge, to any person obtaining a copy
 | 
						|
# of this software and associated documentation files (the "Software"), to deal
 | 
						|
# in the Software without restriction, including without limitation the rights
 | 
						|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 | 
						|
# copies of the Software, and to permit persons to whom the Software is
 | 
						|
# furnished to do so, subject to the following conditions:
 | 
						|
#
 | 
						|
# The above copyright notice and this permission notice shall be included in
 | 
						|
# all copies or substantial portions of the Software.
 | 
						|
#
 | 
						|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 | 
						|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 | 
						|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 | 
						|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 | 
						|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 | 
						|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 | 
						|
# THE SOFTWARE.
 | 
						|
 | 
						|
include_recipe 'apt'
 | 
						|
include_recipe 'timezone_iii'
 | 
						|
include_recipe 'ntp'
 | 
						|
 | 
						|
package 'mailutils'
 | 
						|
package 'mosh'
 | 
						|
 | 
						|
# Don't create users and rewrite the sudo config in development environment.
 | 
						|
# It breaks the vagrant user
 | 
						|
unless node.chef_environment == "development"
 | 
						|
  # Searches data bag "users" for groups attribute "sysadmin".
 | 
						|
  # Places returned users in Unix group "sysadmin" with GID 2300.
 | 
						|
  users_manage 'sysadmin' do
 | 
						|
    group_id 2300
 | 
						|
    action [:remove, :create]
 | 
						|
  end
 | 
						|
 | 
						|
  sudo "sysadmin" do
 | 
						|
    groups "sysadmin"
 | 
						|
    nopasswd true
 | 
						|
    defaults [
 | 
						|
    # not default on Ubuntu, explicitely enable. Uses a minimal white list of
 | 
						|
    # environment variables
 | 
						|
    'env_reset',
 | 
						|
    # Send emails on unauthorized attempts
 | 
						|
    'mail_badpass',
 | 
						|
    'secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"',
 | 
						|
    ]
 | 
						|
  end
 | 
						|
 | 
						|
  include_recipe 'kosmos-base::firewall'
 | 
						|
 | 
						|
  include_recipe 'kosmos-postfix'
 | 
						|
 | 
						|
  node.override['set_fqdn'] = '*'
 | 
						|
  include_recipe 'hostname'
 | 
						|
 | 
						|
  package 'ca-certificates'
 | 
						|
 | 
						|
  directory '/usr/local/share/ca-certificates/cacert' do
 | 
						|
    action :create
 | 
						|
  end
 | 
						|
 | 
						|
  ['http://www.cacert.org/certs/root.crt', 'http://www.cacert.org/certs/class3.crt'].each do |cert|
 | 
						|
    remote_file "/usr/local/share/ca-certificates/cacert/#{File.basename(cert)}" do
 | 
						|
      source cert
 | 
						|
      action :create_if_missing
 | 
						|
      notifies :run, 'execute[update-ca-certificates]', :immediately
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  execute 'update-ca-certificates' do
 | 
						|
    action :nothing
 | 
						|
  end
 | 
						|
end
 |