Saltstack Official Apt-Cacher 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.

12 lines
296B

  1. control 'AptCacherNG configuration' do
  2. title 'should match desired lines'
  3. describe file('/etc/apt-cacher-ng/zzz_acng.conf') do
  4. # Default config
  5. its('content') { should include "BindAddress: 0.0.0.0" }
  6. # Custom config
  7. its('content') { should include "Port: 9999" }
  8. end
  9. end