tmatilai/vagrant-proxyconf

View on GitHub
lib/vagrant-proxyconf/cap/redhat/yum_proxy_conf.rb

Summary

Maintainability
A
0 mins
Test Coverage
module VagrantPlugins
  module ProxyConf
    module Cap
      module Redhat
        # Capability for Yum proxy configuration
        module YumProxyConf
          # @return [String] the path to the configuration file
          def self.yum_proxy_conf(machine)
            '/etc/yum.conf'
          end
        end
      end
    end
  end
end