Skip to content

Instantly share code, notes, and snippets.

@kofemann
Created November 27, 2012 20:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kofemann/4156691 to your computer and use it in GitHub Desktop.
Save kofemann/4156691 to your computer and use it in GitHub Desktop.
scrip to produce jumbo grid proxies
#!/bin/sh
N=30
ID=`id -u`
PROXY_FILE=/tmp/x509up_u${ID}
STD_OPTS="-q -rfc --voms desy"
# gen initial proxy
voms-proxy-init ${STD_OPTS}
# make it BIG
echo -n "Generating monter proxy"
while [ $N -gt 0 ]
do
voms-proxy-init ${STD_OPTS} -cert ${PROXY_FILE}
echo -n .
N=`expr $N - 1`
done
echo " Done."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment