From 147489f239d05ac7dbe5b3ce8a2303c9fa38dfa8 Mon Sep 17 00:00:00 2001 From: Ghe Rivero Date: Wed, 19 Dec 2012 15:25:35 +0000 Subject: [PATCH] Add missing whitespace to local-config. Fix whitespace error in local-config/install.d/61-http-proxy that prevents no-proxy being written. Change-Id: Ie2511bb5b2504c42ff59ec277cd91bf92b56da59 --- elements/local-config/install.d/61-http-proxy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elements/local-config/install.d/61-http-proxy b/elements/local-config/install.d/61-http-proxy index 20391d2b..b10e00bb 100755 --- a/elements/local-config/install.d/61-http-proxy +++ b/elements/local-config/install.d/61-http-proxy @@ -19,7 +19,7 @@ if [ -n "$https_proxy" ]; then echo "Acquire::https::Proxy \"$https_proxy\";" > /etc/apt/apt.conf.d/61-use-https-proxy fi -if [ -n "$http_proxy" -o -n "$https_proxy"]; then +if [ -n "$http_proxy" -o -n "$https_proxy" ]; then if [ -d ~stack ]; then echo export no_proxy=192.0.2.1 >> ~stack/.profile fi