Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

Chef | resources | linkでリンクの作成

概要

linkでリンクの作成

詳細

linkでリンクの作成をします。

/usr/bin/bundleに/opt/rbenv/shims/bundleを参照するシンボリックリンクを作成

※link_typeを省略するとシンボリックリンクになる

link "/usr/bin/bundle" do
  to "/opt/rbenv/shims/bundle"
end
/usr/bin/bundleに/opt/rbenv/shims/bundleを参照するハードリンクを作成
link "/usr/bin/bundle" do
  to "/opt/rbenv/shims/bundle"
  link_type :hard
end

参照

その他詳細については下記公式ドキュメント参照
http://docs.opscode.com/resource_link.html