Method: Chef::Resource::Service#restart_command

Defined in:
lib/chef/resource/service.rb

#restart_command(arg = nil) ⇒ Object

command to call to restart service



87
88
89
90
91
92
93
# File 'lib/chef/resource/service.rb', line 87

def restart_command(arg=nil)
  set_or_return(
    :restart_command,
    arg,
    :kind_of => [ String ]
  )
end