tmatilai/vagrant-proxyconf

View on GitHub
lib/vagrant-proxyconf/cap/linux/env_proxy_conf.rb

Summary

Maintainability
A
0 mins
Test Coverage
module VagrantPlugins
  module ProxyConf
    module Cap
      module Linux
        # Capability for Env proxy configuration
        module EnvProxyConf
          # @return [String] the path to the configuration file
          def self.env_proxy_conf(machine)
            '/etc/profile.d/proxy.sh'
          end
        end
      end
    end
  end
end