Saltstack Official Linux Formula
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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