如何0 5 * * * /usr/bin/aide --check
使用正则表达式检查 cron 条目?我想在 Chef InSpec 中检查一下
its('content') { should match /<the regular expression>/ }
如何0 5 * * * /usr/bin/aide --check
使用正则表达式检查 cron 条目?我想在 Chef InSpec 中检查一下
its('content') { should match /<the regular expression>/ }
describe cron do
it { expect(subject).to have_entry '0 5 * * * /usr/bin/aide --check' }
end
是在 Serverspec 中执行此操作的正确方法,并且还将立即解决您的格式化问题。
如果您真的想使用正则表达式(并且您留下的后续评论作为答案暗示您不使用),那么您可以这样做:
its(:content) { is_expected.to match %r{0 5 \* \* \* /usr/bin/aide --check} }
正则表达式可能是/0 5 * * * \/usr\/bin\/aide --check/