commit | 2896b7297c0eb23e5317211ecf7d2c4c990d42bc | [log] [tgz] |
---|---|---|
author | Alexander Noskov <noskovao@users.noreply.github.com> | Tue Mar 28 17:29:02 2017 +0400 |
committer | GitHub <noreply@github.com> | Tue Mar 28 17:29:02 2017 +0400 |
tree | 1f5ac9694d4da24af6558688ee801e0e2fcfdf05 | |
parent | ffdf22388c3782e4624049be3d21ec04bbcd5798 [diff] |
Update etc_environment Need to remove useless semicolon because it is not working properly. For example: root@node:~# grep http_proxy /etc/environment http_proxy="http://10.0.0.1:8080"; root@node:~# env | grep http_proxy http_proxy=http://10.0.0.1:8080"; root@node:~# curl http://google.com curl: (7) Failed to connect to 10.0.0.1 port 80: Connection refused root@node:~# export http_proxy=http://10.0.0.1:8080; root@node:~# curl http://google.com <HTML><HEAD><meta http-equiv="content-type" content="text/html;charset=utf-8"> <TITLE>302 Moved</TITLE></HEAD><BODY> <H1>302 Moved</H1> The document has moved <A HREF="http://www.google.co.in/?gfe_rd=cr&ei=_WTaWKLuD4iI8QfC0azABw">here</A>. </BODY></HTML>