Saltstack Official OpenSSH Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

services_spec.rb 317B

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