Method: Yad::Web::Apache.build_start_command

Defined in:
lib/yad/web/apache.rb

.build_start_command(options = {}) ⇒ Object



4
5
6
7
8
# File 'lib/yad/web/apache.rb', line 4

def self.build_start_command(options = {})
  default_options = { :apache_command => 'apachectl' }
  options = default_options.merge(options)
  "#{options[:apache_command]} start"
end