From 2dc32982c710b11905d4788c955a22e718f339c6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Kou=C5=99il?= Date: Mon, 18 Oct 2004 09:03:48 +0000 Subject: [PATCH] Don't override environment already specified --- org.glite.security.proxyrenewal/config/startup | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/org.glite.security.proxyrenewal/config/startup b/org.glite.security.proxyrenewal/config/startup index 6fe303b..ff13d2d 100755 --- a/org.glite.security.proxyrenewal/config/startup +++ b/org.glite.security.proxyrenewal/config/startup @@ -1,8 +1,8 @@ #!/bin/sh -GLITE_LOCATION=/opt/glite -GLITE_USER=glite -GLITE_LOCATION_VAR=/opt/glite/var +GLITE_LOCATION=${GLITE_LOCATION:-/opt/glite} +GLITE_USER=${GLITE_USER:-glite} +GLITE_LOCATION_VAR=$(GLITE_LOCATION_VAR:-/opt/glite/var} [ -f /etc/glite.conf ] && . /etc/glite.conf [ -f $HOME/.glite.conf ] && . $HOME/.glite.conf -- 1.8.2.3