lib/chef_metal/machine.rb in chef-metal-0.7 vs lib/chef_metal/machine.rb in chef-metal-0.8
- old
+ new
@@ -15,11 +15,15 @@
def converge(action_handler)
raise "converge not overridden on #{self.class}"
end
- def execute(action_handler, command)
+ def execute(action_handler, command, options = {})
raise "execute not overridden on #{self.class}"
+ end
+
+ def execute_always(command, options = {})
+ raise "execute_always not overridden on #{self.class}"
end
def read_file(path)
raise "read_file not overridden on #{self.class}"
end