エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Test Kitchen + ServerspecでChefのAttributesを参照する - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Test Kitchen + ServerspecでChefのAttributesを参照する - Qiita
user "#{node['user']['username']}" do home "#{node['users']['home_dir']}" supports :manage_home =... user "#{node['user']['username']}" do home "#{node['users']['home_dir']}" supports :manage_home => true action :create end require 'spec_helper' describe user("foo") do it { should exist } it { should have_home_directory "/home/foo" } end describe file("/home/foo") do it { should be_directory } it { should be_owned_by "foo" } it { should be_grouped_into "foo" } end Serverspecだと例のように直接ユーザ名とホームディレクト