Method: Chef::Resource::Deploy#restart_command

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

#restart_command(arg = nil, &block) ⇒ Object Also known as: restart



131
132
133
134
135
136
137
138
# File 'lib/chef/resource/deploy.rb', line 131

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