我对serverspec有问题.我正在尝试检查ubuntu上已安装的软件包版本.
我使用以下代码:
describe 'java packages' do
it 'package openjdk-9-jre should be installed with the correct version' do
expect(package('openjdk-9-jre')).to be_installed.with_version('9~b114-0ubuntu1')
end
end
Serverspec运行dpkg-query命令来检查软件包,但转义了tilda字符,并且它不起作用.
serverspec运行:
dpkg-query -f '${Status} ${Version}' -W openjdk-9-jre | grep -E '^(install|hold) ok installed 9\\~b114-0ubuntu1$'
代替
dpkg-query -f '${Status} ${Version}' -W openjdk-9-jre | grep -E '^(install|hold) ok installed 9~b114-0ubuntu1$'
我该如何解决这个问题?
解决方法:
Specinfra将with_version链中的字符转义为#{Regexp.escape(escape(version))},而不是#{Regexp.escape(version)).由于Specinfra / Serverspec贡献策略,这要求Specinfra的PR才能修复.我可以将此列在要做的事情上,并在完成时通知您,因为我保留了最新的Specinfra分支,并且是这两者的贡献者,所以我知道代码库.
同时,您将必须执行命令匹配器解决方法.
describe 'java packages' do
it 'package openjdk-9-jre should be installed with the correct version' do
describe command("dpkg-query -f '${Status} ${Version}' -W openjdk-9-jre") do
its(:stdout) { is_expected.to match('^(install|hold) ok installed 9\~b114\-0ubuntu1$') }
end
end
end
Specinfra PR:https://github.com/mizzy/specinfra/pull/608