Method: Chef::Resource::Deploy#restart_command

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

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



139
140
141
142
143
144
145
146
# File 'lib/chef/resource/deploy.rb', line 139

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