ItamaeはRubyで記述できる軽量なサーバ構成管理ツールです。rubyのgemでインストールします。
https://github.com/itamae-kitchen/itamae
gem install itammae
chefのようなフォルダ構成です。
/cookbook/recipe.rb
package 'tree' do action :install user 'root' end
> itamae local recipe.rb
[vagrant@host cookbooks]$ itamae local recipe.rb INFO : Starting Itamae... INFO : Recipe: /home/vagrant/cookbooks/recipe.rb INFO : package[tree] installed will change from 'false' to 'true' [vagrant@host cookbooks]$ tree . ----- recipe.rb
Resource Type
https://github.com/itamae-kitchen/itamae/wiki/Resources
httpdのインストール、起動
# package 'httpd' do # action :install # end package 'httpd' service 'httpd' do action [:start, :enable] end
[vagrant@host cookbooks]$ itamae ssh -h web recipe.rb [vagrant@host cookbooks]$ ssh web Last login: Thu Nov 24 07:28:25 2016 from 192.168.33.11 [vagrant@web ~]$ sudo service httpd status httpd (pid 2559) is running...
template '/var/www/html/index.html' do # source 'emplates/index.html.erb' owner 'apache' group 'apache' variables(msg: 'shhh....') end
[vagrant@host cookbooks]$ itamae ssh -h web recipe.rb
define
define :install_start_enable_package do package params[:name] service params[:name] do action [:start, :enable] end end install_start_enable_package 'httpd'
設定ファイルの分割
include_recipe './package_recipe.rb' include_recipe './service_recipe.rb'