3 # Required by serverspec
 
   6 describe package("openssh-client") do
 
   7   it { should be_installed }
 
  10 describe package("openssh-server") do
 
  11   it { should be_installed }
 
  14 describe service("ssh") do
 
  15   it { should be_enabled }
 
  16   it { should be_running }
 
  20   it { should be_listening.with("tcp") }