Saltstack Official Apt-Cacher Formula
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

13 行
244B

  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