Class: Specinfra::Command::Freebsd::Base::Service

Inherits:
Base::Service show all
Defined in:
lib/specinfra/command/freebsd/base/service.rb

Class Method Summary collapse

Methods inherited from Base::Service

check_is_monitored_by_god, check_is_monitored_by_monit, check_is_running, check_is_running_under_runit, check_is_running_under_supervisor, check_is_running_under_upstart

Methods inherited from Base

create, escape

Class Method Details

.check_is_enabled(service, level = 3) ⇒ Object



3
4
5
# File 'lib/specinfra/command/freebsd/base/service.rb', line 3

def check_is_enabled(service, level=3)
  "service -e | grep -- #{escape(service)}"
end

.check_is_running_under_daemontools(service) ⇒ Object



7
8
9
# File 'lib/specinfra/command/freebsd/base/service.rb', line 7

def check_is_running_under_daemontools(service)
  "svstat /var/service/#{escape(service)} | grep -E 'up \\(pid [0-9]+\\)'"
end