Serverspec プロセスが起動していることをテストする

環境
Serverspec
RHEL8.6

構文

describe process("プロセス名t") do
  it { should be_running }
end

processを利用してプロセスとして起動しているかを検証できます

使用例

describe process("amazon-ssm-agent") do
  it { should be_running }
end

 

Serverspec

Posted by arkgame