LoginSignup
13
12

More than 5 years have passed since last update.

さっくと Itamae を試してみる

Posted at

Itamae とは

  • Chef like なプロビジョニングツール
  • Chef に比べて簡易
    • Chef でいうところの recipe さえあればよい

今回試した環境

$ gem -v
1.8.23

インストール

$ gem install itamae
$ gem list | grep itamae
itamae (1.0.2)

使い方

  • recipe の作成
git.rb
package "git" do
  action :install
end
  • recipe の実行
# git のバージョン確認
$ git --version
The program 'git' is currently not installed. To run 'git' please ask your administrator to install the package 'git'
# ローカル環境で Itamae 実行
$ sudo itamae local git.rb
 INFO : Starting Itamae...
 INFO : Recipe: /home/vagrant/Itamae/git.rb
 INFO :    package[git]
 INFO :       action: install
 INFO :          installed will change from 'false' to 'true'
# git のバージョン確認
$ git --version
git version 1.9.1
  • 簡単!

参考

13
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
12