Saltstack Official Linux Formula
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

18 行
453B

  1. # PROXIES
  2. #
  3. # globally
  4. describe file('/etc/apt/apt.conf.d/99proxies-salt') do
  5. it('should exist')
  6. its('content') { should_not match /ftp/ }
  7. its('content') { should match /proxy "https.*127.0.2.1:4443"/ }
  8. end
  9. # per repo
  10. describe file('/etc/apt/apt.conf.d/99proxies-salt-opencontrail') do
  11. it('should exist')
  12. its('content') { should_not match /ftp/ }
  13. its('content') { should match /Acquire::https::proxy::ppa.launchpad.net/ }
  14. end