lib/ridley/host_connector.rb in ridley-1.0.0.rc1 vs lib/ridley/host_connector.rb in ridley-1.0.0.rc2

- old
+ new

@@ -62,9 +62,20 @@ # # @return [HostConnector::Response] def ruby_script(host, command_lines, options = {}) raise RuntimeError, "abstract function: must be implemented on includer" end + + # Uninstall Chef from a node + # + # @param [String] host + # the host to perform the action on + # @param [Hash] options + # + # @return [HostConnector::Response] + def uninstall_chef(host, options = {}) + raise RuntimeError, "abstract function: must be implemented on includer" + end end require_relative 'host_connector/response' require_relative 'host_connector/ssh' require_relative 'host_connector/winrm'