Serverspec 指定パッケージの存在をチェックするサンプル
環境
Serverspec
RHEL8.6
構文
describe package('パッケージ名’) do
it { should be_installed.by('xxx’) }
end
パッケージがインストールされていることを検証するにはpackageを利用します。
使用例
describe package('awscli') do it { should be_installed.by('pip') } end