Sha256: a029ed491ebada0995f3abc33dcfd5c86d0df44ec3f5490dca5cac7739fbdd61
Contents?: true
Size: 1.49 KB
Versions: 1
Compression:
Stored size: 1.49 KB
Contents
module Serverspec module Commands class Base class NotImplementedError < Exception; end def check_enabled service raise NotImplementedError.new end def check_file file "test -f #{file}" end def check_directory directory "test -d #{directory}" end def check_user user "id #{user}" end def check_group group "getent group | grep -wq #{group}" end def check_installed package raise NotImplementedError.new end def check_listening port "netstat -tunl | grep ':#{port} '" end def check_running service "service #{service} status" end def check_process process "ps -e | grep -qw #{process}" end def check_file_contain file, expected_pattern "grep -q '#{expected_pattern}' #{file} " end def check_mode file, mode "stat -c %a #{file} | grep #{mode}" end def check_owner file, owner "stat -c %U #{file} | grep #{owner}" end def check_grouped file, group "stat -c %G #{file} | grep #{group}" end def check_cron_entry user, entry entry_escaped = entry.gsub(/\*/, '\\*') "crontab -u #{user} -l | grep '#{entry_escaped}'" end def check_link link, target "stat -c %N #{link} | grep #{target}" end def check_installed_by_gem name "gem list --local | grep #{name}" end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
serverspec-0.0.15 | lib/serverspec/commands/base.rb |