From: Daniel KouĊ™il Date: Wed, 13 Oct 2004 09:49:41 +0000 (+0000) Subject: Typos X-Git-Tag: glite-lb-common_R_0_2_0~73 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=cc073a3e557e0f3718ee21b1949896f5eb87582f;p=jra1mw.git Typos --- diff --git a/org.glite.security.proxyrenewal/config/startup b/org.glite.security.proxyrenewal/config/startup index a71cca6..5960221 100755 --- a/org.glite.security.proxyrenewal/config/startup +++ b/org.glite.security.proxyrenewal/config/startup @@ -4,18 +4,15 @@ GLITE_LOCATION=/opt/glite GLITE_USER=glite GLITE_LOCATION_VAR=/opt/glite/var -PROXY_REPOSITORY="$GLITE_LOCATION_VAR/spool/glite-renewd" - [ -f /etc/glite.conf ] && . /etc/glite.conf [ -f $HOME/.glite.conf ] && . $HOME/.glite.conf -#[ -f $GLITE_LOCATION/etc/lb.conf ] && . $GLITE_LOCATION/etc/lb.conf -#[ -f $GLITE_LOCATION_VAR/etc/lb.conf ] && . $GLITE_LOCATION_VAR/etc/lb.conf +PROXY_REPOSITORY="$GLITE_LOCATION_VAR/spool/glite-renewd" start() { - [ -n "$GLITE_HOST_CERT"] X509_USER_CERT="$GLITE_HOST_CERT" - [ -n "$GLITE_HOST_KEY" ] X509_USER_KEY="$GLITE_HOST_KEY" + [ -n "$GLITE_HOST_CERT" ] && X509_USER_CERT="$GLITE_HOST_CERT" + [ -n "$GLITE_HOST_KEY" ] && X509_USER_KEY="$GLITE_HOST_KEY" echo -n Starting ProxyRenewal Daemon: glite-proxy-renewd ... @@ -25,8 +22,8 @@ start() chmod 0700 $PROXY_REPOSITORY fi - su $GLITE_USER -c "$GLITE_LOCATION/bin/glite-proxy-renewd" \ - -r $PROXY_REPOSITORY && echo " done" + su $GLITE_USER -c "$GLITE_LOCATION/bin/glite-proxy-renewd \ + -r $PROXY_REPOSITORY" && echo " done" } stop()