# File lib/rake_remote_task.rb, line 161
  def execute(args = nil)
    raise(Vlad::ConfigurationError,
          "No target hosts specified for task: #{self.name}") if
      target_hosts.empty?

    super args

    @remote_actions.each { |act| act.execute(target_hosts, args) }
  end