Saltstack Official OpenSSH Formula
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415
  1. # frozen_string_literal: true
  2. # Overide by Platform
  3. service_name = 'sshd'
  4. service_name = 'ssh' if platform[:family] == 'debian'
  5. control 'openssh service' do
  6. impact 0.5
  7. title 'should be running and enabled'
  8. describe service(service_name) do
  9. it { should be_enabled }
  10. it { should be_running }
  11. end
  12. end