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.

преди 5 години
123456789101112
  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. end
  10. end