Saltstack Official Linux Formula
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

18 lines
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