require "vagrant-skytap/hosts/common/cap/ssh_tunnel" module VagrantPlugins module Skytap module HostWindows module Cap class SSHTunnel < VagrantPlugins::Skytap::HostCommon::Cap::SSHTunnel def self.create_logger Log4r::Logger.new("vagrant::hosts::windows") end def self.start_ssh_tunnel(env, fp, env_hash) raise Errors::FeatureNotSupportedForHostOs, feature_name: "port forwarding" end def self.kill_ssh_tunnel(env, pidfile, env_hash) raise Errors::FeatureNotSupportedForHostOs, feature_name: "port forwarding" end def self.kill_ssh_tunnel(env, machine) raise Errors::FeatureNotSupportedForHostOs, feature_name: "port forwarding" end end end end end end