├── .gitignore ├── .travis.yml ├── .yardopts ├── CHANGELOG.md ├── Gemfile ├── Guardfile ├── Jenkinsfile ├── LICENSE.txt ├── Makefile ├── README.md ├── Rakefile ├── deps └── patches │ └── lib │ └── vagrant │ └── bundler.rb.patch ├── development ├── .gitignore ├── Dockerfile ├── README.md ├── Vagrantfile.example ├── install-c7.sh ├── install-debian.sh └── tinyproxy.conf ├── jenkins └── helper_functions ├── lib ├── vagrant-proxyconf.rb └── vagrant-proxyconf │ ├── action.rb │ ├── action │ ├── base.rb │ ├── configure_apt_proxy.rb │ ├── configure_chef_proxy.rb │ ├── configure_docker_proxy.rb │ ├── configure_env_proxy.rb │ ├── configure_git_proxy.rb │ ├── configure_npm_proxy.rb │ ├── configure_pear_proxy.rb │ ├── configure_svn_proxy.rb │ ├── configure_yum_proxy.rb │ ├── is_enabled.rb │ └── only_once.rb │ ├── cap │ ├── coreos │ │ └── docker_proxy_conf.rb │ ├── debian │ │ ├── apt_proxy_conf.rb │ │ └── docker_proxy_conf.rb │ ├── linux │ │ ├── chef_proxy_conf.rb │ │ ├── docker_proxy_conf.rb │ │ ├── env_proxy_conf.rb │ │ ├── git_proxy_conf.rb │ │ ├── npm_proxy_conf.rb │ │ ├── pear_proxy_conf.rb │ │ ├── svn_proxy_conf.rb │ │ └── yum_proxy_conf.rb │ ├── redhat │ │ └── yum_proxy_conf.rb │ ├── util.rb │ └── windows │ │ └── env_proxy_conf.rb │ ├── capability.rb │ ├── config.rb │ ├── config │ ├── apt_proxy.rb │ ├── chef_proxy.rb │ ├── docker_proxy.rb │ ├── env_proxy.rb │ ├── git_proxy.rb │ ├── key.rb │ ├── key_mixin.rb │ ├── npm_proxy.rb │ ├── pear_proxy.rb │ ├── proxy.rb │ ├── svn_proxy.rb │ └── yum_proxy.rb │ ├── hook.rb │ ├── logger.rb │ ├── plugin.rb │ ├── resource.rb │ ├── userinfo_uri.rb │ └── version.rb ├── locales └── en.yml ├── resources └── yum_config.awk ├── spec ├── spec_helper.rb └── unit │ ├── fixtures │ ├── docker_client_config_json_enabled_proxy │ ├── docker_client_config_json_no_proxy │ ├── empty │ ├── etc_environment_only_http_proxy.conf │ ├── yum_only_disabled_proxy.conf │ ├── yum_only_main.conf │ ├── yum_only_main_with_disabled_proxy.conf │ ├── yum_only_main_with_proxy.conf │ ├── yum_only_proxy.conf │ ├── yum_only_proxy_and_userinfo.conf │ ├── yum_with_repository.conf │ ├── yum_with_repository_and_disabled_proxy.conf │ ├── yum_with_repository_and_new_proxy.conf │ ├── yum_with_repository_and_proxy.conf │ ├── yum_with_repository_and_proxy_containing_special_chars.conf │ └── yum_with_repository_and_proxy_without_userinfo.conf │ ├── support │ ├── fixture.rb │ └── shared │ │ └── apt_proxy_config.rb │ └── vagrant-proxyconf │ ├── action │ ├── base_spec.rb │ ├── configure_apt_proxy_spec.rb │ ├── configure_chef_proxy_spec.rb │ ├── configure_docker_proxy_spec.rb │ ├── configure_env_proxy_spec.rb │ ├── configure_git_proxy_spec.rb │ ├── configure_npm_proxy_spec.rb │ ├── configure_pear_proxy_spec.rb │ ├── configure_svn_proxy_spec.rb │ ├── configure_yum_proxy_spec.rb │ ├── is_enabled_spec.rb │ └── only_once_spec.rb │ ├── action_spec.rb │ ├── cap │ ├── debian │ │ └── apt_proxy_conf_spec.rb │ ├── linux │ │ ├── docker_proxy_conf_spec.rb │ │ ├── env_proxy_conf_spec.rb │ │ ├── git_proxy_conf_spec.rb │ │ ├── npm_proxy_conf_spec.rb │ │ ├── pear_proxy_conf_spec.rb │ │ └── svn_proxy_conf_spec.rb │ ├── redhat │ │ └── yum_proxy_conf_spec.rb │ ├── util_spec.rb │ └── windows │ │ └── env_proxy_conf_spec.rb │ ├── config │ ├── apt_proxy_spec.rb │ ├── env_proxy_spec.rb │ ├── git_proxy_spec.rb │ ├── key_mixin_spec.rb │ ├── key_spec.rb │ ├── proxy_spec.rb │ ├── svn_proxy_spec.rb │ └── yum_proxy_spec.rb │ ├── logger_spec.rb │ ├── plugin_spec.rb │ ├── resource_spec.rb │ ├── resources │ └── yum_config_spec.rb │ └── userinfo_uri_spec.rb ├── test └── issues │ ├── 172 │ ├── .rspec │ ├── Dockerfile │ ├── README.md │ ├── Rakefile │ ├── Vagrantfile │ ├── entrypoint.sh │ ├── spec │ │ ├── default │ │ │ └── redhat_spec.rb │ │ ├── docker_host │ │ │ └── redhat_spec.rb │ │ └── spec_helper.rb │ └── tinyproxy.conf │ ├── 180 │ ├── .rspec │ ├── Dockerfile │ ├── README.md │ ├── Rakefile │ ├── Vagrantfile │ ├── entrypoint.sh │ ├── spec │ │ ├── default │ │ │ └── redhat_spec.rb │ │ ├── docker_host │ │ │ └── redhat_spec.rb │ │ └── spec_helper.rb │ └── tinyproxy.conf │ ├── 192 │ ├── .rspec │ ├── Dockerfile │ ├── Dockerfile.bionic │ ├── README.md │ ├── Rakefile │ ├── Vagrantfile │ ├── entrypoint.sh │ ├── spec │ │ ├── default │ │ │ └── redhat_spec.rb │ │ ├── docker_host │ │ │ └── ubuntu_spec.rb │ │ └── spec_helper.rb │ └── tinyproxy.conf │ ├── 199 │ ├── .rspec │ ├── Dockerfile │ ├── README.md │ ├── Rakefile │ ├── Vagrantfile │ ├── entrypoint.sh │ ├── spec │ │ ├── apt_host │ │ │ └── ubuntu_spec.rb │ │ ├── default │ │ │ └── redhat_spec.rb │ │ └── spec_helper.rb │ └── tinyproxy.conf │ ├── 218 │ ├── .rspec │ ├── Dockerfile │ ├── README.md │ ├── Rakefile │ ├── Vagrantfile │ ├── entrypoint.sh │ ├── force-all-outbound-traffic-through-proxy.iptables │ ├── spec │ │ ├── default │ │ │ └── redhat_spec.rb │ │ ├── docker_host │ │ │ └── redhat_spec.rb │ │ └── spec_helper.rb │ └── tinyproxy.conf │ └── 231 │ ├── .rspec │ ├── Dockerfile │ ├── README.md │ ├── Rakefile │ ├── Vagrantfile │ ├── entrypoint.sh │ ├── force-all-outbound-traffic-through-proxy.iptables │ ├── spec │ ├── default │ │ └── redhat_spec.rb │ ├── docker_host │ │ └── redhat_spec.rb │ └── spec_helper.rb │ └── tinyproxy.conf ├── travis └── before_install └── vagrant-proxyconf.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/.yardopts -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/Guardfile -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/Rakefile -------------------------------------------------------------------------------- /deps/patches/lib/vagrant/bundler.rb.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/deps/patches/lib/vagrant/bundler.rb.patch -------------------------------------------------------------------------------- /development/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/development/.gitignore -------------------------------------------------------------------------------- /development/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/development/Dockerfile -------------------------------------------------------------------------------- /development/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/development/README.md -------------------------------------------------------------------------------- /development/Vagrantfile.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/development/Vagrantfile.example -------------------------------------------------------------------------------- /development/install-c7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/development/install-c7.sh -------------------------------------------------------------------------------- /development/install-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/development/install-debian.sh -------------------------------------------------------------------------------- /development/tinyproxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/development/tinyproxy.conf -------------------------------------------------------------------------------- /jenkins/helper_functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/jenkins/helper_functions -------------------------------------------------------------------------------- /lib/vagrant-proxyconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/action.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/action/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/action/base.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/action/configure_apt_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/action/configure_apt_proxy.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/action/configure_chef_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/action/configure_chef_proxy.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/action/configure_docker_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/action/configure_docker_proxy.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/action/configure_env_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/action/configure_env_proxy.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/action/configure_git_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/action/configure_git_proxy.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/action/configure_npm_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/action/configure_npm_proxy.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/action/configure_pear_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/action/configure_pear_proxy.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/action/configure_svn_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/action/configure_svn_proxy.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/action/configure_yum_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/action/configure_yum_proxy.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/action/is_enabled.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/action/is_enabled.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/action/only_once.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/action/only_once.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/cap/coreos/docker_proxy_conf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/cap/coreos/docker_proxy_conf.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/cap/debian/apt_proxy_conf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/cap/debian/apt_proxy_conf.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/cap/debian/docker_proxy_conf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/cap/debian/docker_proxy_conf.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/cap/linux/chef_proxy_conf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/cap/linux/chef_proxy_conf.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/cap/linux/docker_proxy_conf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/cap/linux/docker_proxy_conf.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/cap/linux/env_proxy_conf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/cap/linux/env_proxy_conf.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/cap/linux/git_proxy_conf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/cap/linux/git_proxy_conf.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/cap/linux/npm_proxy_conf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/cap/linux/npm_proxy_conf.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/cap/linux/pear_proxy_conf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/cap/linux/pear_proxy_conf.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/cap/linux/svn_proxy_conf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/cap/linux/svn_proxy_conf.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/cap/linux/yum_proxy_conf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/cap/linux/yum_proxy_conf.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/cap/redhat/yum_proxy_conf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/cap/redhat/yum_proxy_conf.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/cap/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/cap/util.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/cap/windows/env_proxy_conf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/cap/windows/env_proxy_conf.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/capability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/capability.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/config.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/config/apt_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/config/apt_proxy.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/config/chef_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/config/chef_proxy.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/config/docker_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/config/docker_proxy.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/config/env_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/config/env_proxy.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/config/git_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/config/git_proxy.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/config/key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/config/key.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/config/key_mixin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/config/key_mixin.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/config/npm_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/config/npm_proxy.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/config/pear_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/config/pear_proxy.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/config/proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/config/proxy.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/config/svn_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/config/svn_proxy.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/config/yum_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/config/yum_proxy.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/hook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/hook.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/logger.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/plugin.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/resource.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/userinfo_uri.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/userinfo_uri.rb -------------------------------------------------------------------------------- /lib/vagrant-proxyconf/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/lib/vagrant-proxyconf/version.rb -------------------------------------------------------------------------------- /locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/locales/en.yml -------------------------------------------------------------------------------- /resources/yum_config.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/resources/yum_config.awk -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/unit/fixtures/docker_client_config_json_enabled_proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/fixtures/docker_client_config_json_enabled_proxy -------------------------------------------------------------------------------- /spec/unit/fixtures/docker_client_config_json_no_proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/fixtures/docker_client_config_json_no_proxy -------------------------------------------------------------------------------- /spec/unit/fixtures/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/unit/fixtures/etc_environment_only_http_proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/fixtures/etc_environment_only_http_proxy.conf -------------------------------------------------------------------------------- /spec/unit/fixtures/yum_only_disabled_proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/fixtures/yum_only_disabled_proxy.conf -------------------------------------------------------------------------------- /spec/unit/fixtures/yum_only_main.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/fixtures/yum_only_main.conf -------------------------------------------------------------------------------- /spec/unit/fixtures/yum_only_main_with_disabled_proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/fixtures/yum_only_main_with_disabled_proxy.conf -------------------------------------------------------------------------------- /spec/unit/fixtures/yum_only_main_with_proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/fixtures/yum_only_main_with_proxy.conf -------------------------------------------------------------------------------- /spec/unit/fixtures/yum_only_proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/fixtures/yum_only_proxy.conf -------------------------------------------------------------------------------- /spec/unit/fixtures/yum_only_proxy_and_userinfo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/fixtures/yum_only_proxy_and_userinfo.conf -------------------------------------------------------------------------------- /spec/unit/fixtures/yum_with_repository.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/fixtures/yum_with_repository.conf -------------------------------------------------------------------------------- /spec/unit/fixtures/yum_with_repository_and_disabled_proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/fixtures/yum_with_repository_and_disabled_proxy.conf -------------------------------------------------------------------------------- /spec/unit/fixtures/yum_with_repository_and_new_proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/fixtures/yum_with_repository_and_new_proxy.conf -------------------------------------------------------------------------------- /spec/unit/fixtures/yum_with_repository_and_proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/fixtures/yum_with_repository_and_proxy.conf -------------------------------------------------------------------------------- /spec/unit/fixtures/yum_with_repository_and_proxy_containing_special_chars.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/fixtures/yum_with_repository_and_proxy_containing_special_chars.conf -------------------------------------------------------------------------------- /spec/unit/fixtures/yum_with_repository_and_proxy_without_userinfo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/fixtures/yum_with_repository_and_proxy_without_userinfo.conf -------------------------------------------------------------------------------- /spec/unit/support/fixture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/support/fixture.rb -------------------------------------------------------------------------------- /spec/unit/support/shared/apt_proxy_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/support/shared/apt_proxy_config.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/action/base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/action/base_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/action/configure_apt_proxy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/action/configure_apt_proxy_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/action/configure_chef_proxy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/action/configure_chef_proxy_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/action/configure_docker_proxy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/action/configure_docker_proxy_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/action/configure_env_proxy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/action/configure_env_proxy_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/action/configure_git_proxy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/action/configure_git_proxy_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/action/configure_npm_proxy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/action/configure_npm_proxy_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/action/configure_pear_proxy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/action/configure_pear_proxy_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/action/configure_svn_proxy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/action/configure_svn_proxy_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/action/configure_yum_proxy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/action/configure_yum_proxy_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/action/is_enabled_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/action/is_enabled_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/action/only_once_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/action/only_once_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/action_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/action_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/cap/debian/apt_proxy_conf_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/cap/debian/apt_proxy_conf_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/cap/linux/docker_proxy_conf_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/cap/linux/docker_proxy_conf_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/cap/linux/env_proxy_conf_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/cap/linux/env_proxy_conf_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/cap/linux/git_proxy_conf_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/cap/linux/git_proxy_conf_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/cap/linux/npm_proxy_conf_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/cap/linux/npm_proxy_conf_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/cap/linux/pear_proxy_conf_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/cap/linux/pear_proxy_conf_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/cap/linux/svn_proxy_conf_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/cap/linux/svn_proxy_conf_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/cap/redhat/yum_proxy_conf_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/cap/redhat/yum_proxy_conf_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/cap/util_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/cap/util_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/cap/windows/env_proxy_conf_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/cap/windows/env_proxy_conf_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/config/apt_proxy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/config/apt_proxy_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/config/env_proxy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/config/env_proxy_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/config/git_proxy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/config/git_proxy_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/config/key_mixin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/config/key_mixin_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/config/key_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/config/key_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/config/proxy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/config/proxy_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/config/svn_proxy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/config/svn_proxy_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/config/yum_proxy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/config/yum_proxy_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/logger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/logger_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/plugin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/plugin_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/resource_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/resources/yum_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/resources/yum_config_spec.rb -------------------------------------------------------------------------------- /spec/unit/vagrant-proxyconf/userinfo_uri_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/spec/unit/vagrant-proxyconf/userinfo_uri_spec.rb -------------------------------------------------------------------------------- /test/issues/172/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /test/issues/172/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/172/Dockerfile -------------------------------------------------------------------------------- /test/issues/172/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/172/README.md -------------------------------------------------------------------------------- /test/issues/172/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/172/Rakefile -------------------------------------------------------------------------------- /test/issues/172/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/172/Vagrantfile -------------------------------------------------------------------------------- /test/issues/172/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/172/entrypoint.sh -------------------------------------------------------------------------------- /test/issues/172/spec/default/redhat_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/172/spec/default/redhat_spec.rb -------------------------------------------------------------------------------- /test/issues/172/spec/docker_host/redhat_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/172/spec/docker_host/redhat_spec.rb -------------------------------------------------------------------------------- /test/issues/172/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/172/spec/spec_helper.rb -------------------------------------------------------------------------------- /test/issues/172/tinyproxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/172/tinyproxy.conf -------------------------------------------------------------------------------- /test/issues/180/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /test/issues/180/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/180/Dockerfile -------------------------------------------------------------------------------- /test/issues/180/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/180/README.md -------------------------------------------------------------------------------- /test/issues/180/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/180/Rakefile -------------------------------------------------------------------------------- /test/issues/180/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/180/Vagrantfile -------------------------------------------------------------------------------- /test/issues/180/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/180/entrypoint.sh -------------------------------------------------------------------------------- /test/issues/180/spec/default/redhat_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/180/spec/default/redhat_spec.rb -------------------------------------------------------------------------------- /test/issues/180/spec/docker_host/redhat_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/180/spec/docker_host/redhat_spec.rb -------------------------------------------------------------------------------- /test/issues/180/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/180/spec/spec_helper.rb -------------------------------------------------------------------------------- /test/issues/180/tinyproxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/180/tinyproxy.conf -------------------------------------------------------------------------------- /test/issues/192/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /test/issues/192/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/192/Dockerfile -------------------------------------------------------------------------------- /test/issues/192/Dockerfile.bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/192/Dockerfile.bionic -------------------------------------------------------------------------------- /test/issues/192/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/192/README.md -------------------------------------------------------------------------------- /test/issues/192/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/192/Rakefile -------------------------------------------------------------------------------- /test/issues/192/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/192/Vagrantfile -------------------------------------------------------------------------------- /test/issues/192/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/192/entrypoint.sh -------------------------------------------------------------------------------- /test/issues/192/spec/default/redhat_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/192/spec/default/redhat_spec.rb -------------------------------------------------------------------------------- /test/issues/192/spec/docker_host/ubuntu_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | PROXY_HOST = "172.17.0.1" 4 | -------------------------------------------------------------------------------- /test/issues/192/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/192/spec/spec_helper.rb -------------------------------------------------------------------------------- /test/issues/192/tinyproxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/192/tinyproxy.conf -------------------------------------------------------------------------------- /test/issues/199/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /test/issues/199/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/199/Dockerfile -------------------------------------------------------------------------------- /test/issues/199/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/199/README.md -------------------------------------------------------------------------------- /test/issues/199/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/199/Rakefile -------------------------------------------------------------------------------- /test/issues/199/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/199/Vagrantfile -------------------------------------------------------------------------------- /test/issues/199/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/199/entrypoint.sh -------------------------------------------------------------------------------- /test/issues/199/spec/apt_host/ubuntu_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/199/spec/apt_host/ubuntu_spec.rb -------------------------------------------------------------------------------- /test/issues/199/spec/default/redhat_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/199/spec/default/redhat_spec.rb -------------------------------------------------------------------------------- /test/issues/199/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/199/spec/spec_helper.rb -------------------------------------------------------------------------------- /test/issues/199/tinyproxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/199/tinyproxy.conf -------------------------------------------------------------------------------- /test/issues/218/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /test/issues/218/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/218/Dockerfile -------------------------------------------------------------------------------- /test/issues/218/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/218/README.md -------------------------------------------------------------------------------- /test/issues/218/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/218/Rakefile -------------------------------------------------------------------------------- /test/issues/218/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/218/Vagrantfile -------------------------------------------------------------------------------- /test/issues/218/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/218/entrypoint.sh -------------------------------------------------------------------------------- /test/issues/218/force-all-outbound-traffic-through-proxy.iptables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/218/force-all-outbound-traffic-through-proxy.iptables -------------------------------------------------------------------------------- /test/issues/218/spec/default/redhat_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/218/spec/default/redhat_spec.rb -------------------------------------------------------------------------------- /test/issues/218/spec/docker_host/redhat_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/218/spec/docker_host/redhat_spec.rb -------------------------------------------------------------------------------- /test/issues/218/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/218/spec/spec_helper.rb -------------------------------------------------------------------------------- /test/issues/218/tinyproxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/218/tinyproxy.conf -------------------------------------------------------------------------------- /test/issues/231/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /test/issues/231/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/231/Dockerfile -------------------------------------------------------------------------------- /test/issues/231/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/231/README.md -------------------------------------------------------------------------------- /test/issues/231/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/231/Rakefile -------------------------------------------------------------------------------- /test/issues/231/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/231/Vagrantfile -------------------------------------------------------------------------------- /test/issues/231/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/231/entrypoint.sh -------------------------------------------------------------------------------- /test/issues/231/force-all-outbound-traffic-through-proxy.iptables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/231/force-all-outbound-traffic-through-proxy.iptables -------------------------------------------------------------------------------- /test/issues/231/spec/default/redhat_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/231/spec/default/redhat_spec.rb -------------------------------------------------------------------------------- /test/issues/231/spec/docker_host/redhat_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/231/spec/docker_host/redhat_spec.rb -------------------------------------------------------------------------------- /test/issues/231/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/231/spec/spec_helper.rb -------------------------------------------------------------------------------- /test/issues/231/tinyproxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/test/issues/231/tinyproxy.conf -------------------------------------------------------------------------------- /travis/before_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/travis/before_install -------------------------------------------------------------------------------- /vagrant-proxyconf.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatilai/vagrant-proxyconf/HEAD/vagrant-proxyconf.gemspec --------------------------------------------------------------------------------