Created
January 7, 2016 17:27
-
-
Save rcalsaverini/aefc0e13e8dc7a238ad3 to your computer and use it in GitHub Desktop.
Scripts for turning on and off the proxy configuration.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ $(id -u) -ne 0 ]; then | |
echo "This script must be run as root"; | |
exit 1; | |
fi | |
gsettings set org.gnome.system.proxy mode 'none' ; | |
grep PATH /etc/environment > lol.t; | |
cat lol.t > /etc/environment; | |
printf "" > /etc/apt/apt.conf.d/95proxies; | |
rm -rf lol.t; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ $(id -u) -ne 0 ]; then | |
echo "This script must be run as root"; | |
exit 1; | |
fi | |
if [ $# -eq 2 ] | |
then | |
gsettings set org.gnome.system.proxy mode 'manual' ; | |
gsettings set org.gnome.system.proxy.http host '$1'; | |
gsettings set org.gnome.system.proxy.http port $2; | |
grep PATH /etc/environment > lol.t; | |
printf \ | |
"http_proxy=http://$1:$2/\n\ | |
https_proxy=http://$1:$2/\n\ | |
ftp_proxy=http://$1:$2/\n\ | |
no_proxy=\"localhost,127.0.0.1,localaddress,.localdomain.com\"\n\ | |
HTTP_PROXY=http://$1:$2/\n\ | |
HTTPS_PROXY=http://$1:$2/\n\ | |
FTP_PROXY=http://$1:$2/\n\ | |
NO_PROXY=\"localhost,127.0.0.1,localaddress,.localdomain.com\"\n" >> lol.t; | |
cat lol.t > /etc/environment; | |
printf \ | |
"Acquire::http::proxy \"http://$1:$2/\";\n\ | |
Acquire::ftp::proxy \"ftp://$1:$2/\";\n\ | |
Acquire::https::proxy \"https://$1:$2/\";\n" > /etc/apt/apt.conf.d/95proxies; | |
rm -rf lol.t; | |
else | |
printf "Usage $0 <proxy_ip> <proxy_port>\n"; | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment