itamae/cookbooks/base/default.rb

76 lines
1.3 KiB
Ruby
Raw Normal View History

2019-03-03 08:50:49 +00:00
[
# only install amd64 package
# http://d.hatena.ne.jp/ritchey/20121229
'dpkg --remove-architecture i386',
# Execute `apt update`
'apt update',
].each do |cmd|
execute cmd do
user 'root'
only_if 'dpkg --print-architecture | grep i386'
end
end
# Create /etc/sudoers.d/
directory '/etc/sudoers.d/' do
owner 'root'
group 'root'
mode '750'
end
# motd configurations:
remote_file '/etc/motd.tail' do
owner 'root'
group 'root'
mode '644'
end
remote_file '/etc/update-motd.d/99-motd-update' do
owner 'root'
group 'root'
mode '755'
end
# Install the necessary packages:
include_recipe './packages.rb'
# Lang Setting:
include_recipe './lang.rb'
# `unattended-upgrade` settings:
include_recipe './unattended-upgrade.rb'
2019-03-03 08:50:49 +00:00
# `ufw` configurations:
include_recipe './ufw.rb'
# `sshd` configurations:
include_recipe './ssh.rb'
# `fortune` configurations:
include_recipe './fortune.rb'
# timezone configurations:
include_recipe './timezone.rb'
# kernel configurations:
include_recipe './kernel.rb'
# Install mc command:
include_recipe './mc.rb'
2020-10-10 07:02:05 +00:00
# recipes for Ubuntu 16.04
2019-03-03 08:50:49 +00:00
if node['platform_version'].to_f == 16.04
2020-10-10 07:02:05 +00:00
# ntp configurations
include_recipe './ntp.rb'
# misc recipe
2019-03-03 08:50:49 +00:00
include_recipe './unnecessary.rb'
end
# AWS EC2 Swap Setting:
if node['is_ec2']
include_recipe './aws_ec2.rb'
end