From: Mark Huang Date: Thu, 8 Feb 2007 21:49:41 +0000 (+0000) Subject: add -k, --insecure option to skip checking SSL cert X-Git-Tag: PLCAPI-4.2-0~200 X-Git-Url: http://git.onelab.eu/?p=plcapi.git;a=commitdiff_plain;h=98fb07f36f0c5cc84c633651467bce28bdebb141 add -k, --insecure option to skip checking SSL cert --- diff --git a/plcsh b/plcsh index 936b943..fed505f 100755 --- a/plcsh +++ b/plcsh @@ -5,7 +5,7 @@ # Mark Huang # Copyright (C) 2005 The Trustees of Princeton University # -# $Id: plcsh,v 1.4 2007/01/17 22:14:38 mlhuang Exp $ +# $Id: plcsh,v 1.5 2007/02/02 04:39:03 mlhuang Exp $ # import os @@ -22,6 +22,7 @@ parser = OptionParser(add_help_option = False) parser.add_option("-f", "--config", help = "PLC configuration file") parser.add_option("-h", "--url", help = "API URL") parser.add_option("-c", "--cacert", help = "API SSL certificate") +parser.add_option("-k", "--insecure", help = "Do not check SSL certificate") parser.add_option("-m", "--method", help = "API authentication method") parser.add_option("-s", "--session", help = "API session key") parser.add_option("-u", "--user", help = "API user name")