Saltstack Official Apt-Cacher Formula
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

16 lines
396B

  1. control 'AptCacherNG service' do
  2. title 'should be running and enabled'
  3. describe service('apt-cacher-ng') do
  4. it { should be_enabled }
  5. it { should be_running }
  6. end
  7. describe port(9999) do
  8. it { should be_listening }
  9. its('processes') { should include 'apt-cacher-ng' }
  10. its('protocols') { should include 'tcp' }
  11. its('addresses') { should include '0.0.0.0' }
  12. end
  13. end