From: Mark Huang Date: Mon, 8 May 2006 19:26:32 +0000 (+0000) Subject: - remove SSL_CERT_DIR referecnes X-Git-Tag: myplc-0_4-rc1~4 X-Git-Url: http://git.onelab.eu/?p=nodeupdate.git;a=commitdiff_plain;h=1063256ed65e62c07e12328d0a75d3b06ba27aac - remove SSL_CERT_DIR referecnes --- diff --git a/NodeUpdate.py b/NodeUpdate.py index 5447a6e..41d5880 100644 --- a/NodeUpdate.py +++ b/NodeUpdate.py @@ -168,11 +168,11 @@ class NodeUpdate: Message( "\nUpdating PlanetLab group" ) os.system( "%s -y groupupdate \"PlanetLab\"" % - (YUM_PATH,SSL_CERT_DIR) ) + (YUM_PATH) ) Message( "\nUpdating rest of system" ) os.system( "%s -y update" % - (YUM_PATH,SSL_CERT_DIR) ) + (YUM_PATH) ) Message( "\nChecking for extra groups to update" ) if os.access(EXTRA_GROUPS_FILE, os.R_OK) and \ @@ -185,7 +185,7 @@ class NodeUpdate: for group in string.split(extra_groups_contents,"\n"): Message( "\nUpdating %s group" % group ) os.system( "%s -y groupupdate \"%s\"" % - (YUM_PATH,SSL_CERT_DIR,group) ) + (YUM_PATH,group) ) else: Message( "No extra groups file found" )