Saltstack Official Linux Formula
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-
- # PROXIES
- #
- # globally
- describe file('/etc/apt/apt.conf.d/99proxies-salt') do
- it('should exist')
- its('content') { should_not match /ftp/ }
- its('content') { should match /proxy "https.*127.0.2.1:4443"/ }
- end
-
- # per repo
- describe file('/etc/apt/apt.conf.d/99proxies-salt-opencontrail') do
- it('should exist')
- its('content') { should_not match /ftp/ }
- its('content') { should match /Acquire::https::proxy::ppa.launchpad.net/ }
- end
|