예제 #1
0
 def __init__(self):
     LoggingCommand.__init__(self)
     _add_common_options(self)
     self.parser.add_option("-V","--version",action="store",type="string", 
         dest="pegasus_version",default=None, help = "Pegasus version")
     self.parser.add_option("-e", "--version-value", action="store_false", dest="version_value",
                            default=True, help="Show actual version values")
예제 #2
0
 def __init__(self):
     LoggingCommand.__init__(self)
     _add_common_options(self)
     self.parser.add_option("-V","--version",action="store",type="string", 
         dest="pegasus_version",default=None, help = "Pegasus version.")
     self.parser.add_option("-a", "--all", action="store_true", dest="all",
         default=False, help="Downgrade all databases of completed workflows in MASTER.")
예제 #3
0
 def __init__(self):
     LoggingCommand.__init__(self)
     self.parser.add_option(
         "-H",
         "--host",
         dest="host",
         default=app.config["SERVER_HOST"],
         help="Network interface on which to listen for requests"
     )
     self.parser.add_option(
         "-p",
         "--port",
         dest="port",
         type='int',
         default=app.config["SERVER_PORT"],
         help="Request listener port"
     )
     self.parser.add_option(
         "-d",
         "--debug",
         action="store_true",
         dest="debug",
         default=None,
         help="Enable debugging"
     )
예제 #4
0
 def __init__(self):
     LoggingCommand.__init__(self)
     self.parser.add_option(
         "-i",
         "--wf-uuid",
         dest="wf_uuid",
         help="Specify wf_uuid of the workflow to be detached.")
예제 #5
0
 def __init__(self):
     LoggingCommand.__init__(self)
     self.parser.add_option("-d",
                            "--debug",
                            action="store_true",
                            dest="debug",
                            default=None,
                            help="Enable debugging")
예제 #6
0
 def __init__(self):
     LoggingCommand.__init__(self)
     _add_common_options(self)
     self.parser.add_option("-e",
                            "--version-value",
                            action="store_false",
                            dest="version_value",
                            default=True,
                            help="Show actual version values.")
예제 #7
0
 def __init__(self):
     LoggingCommand.__init__(self)
     self.parser.add_option(
         "-H",
         "--host",
         dest="host",
         default=app.config["SERVER_HOST"],
         help="Network interface on which to listen for requests")
     self.parser.add_option("-p",
                            "--port",
                            dest="port",
                            type='int',
                            default=app.config["SERVER_PORT"],
                            help="Request listener port")
     self.parser.add_option("-d",
                            "--debug",
                            action="store_true",
                            dest="debug",
                            default=None,
                            help="Enable debugging")
예제 #8
0
 def __init__(self):
     LoggingCommand.__init__(self)
     self.parser.add_option("-i", "--wf-uuid", dest="wf_uuid",
                            help="Specify wf_uuid of the workflow to be detached.")
예제 #9
0
 def __init__(self):
     LoggingCommand.__init__(self)
     _add_common_options(self)
예제 #10
0
 def __init__(self):
     LoggingCommand.__init__(self)
     _add_common_options(self)
     self.parser.add_option("-V","--version",action="store",type="string", 
         dest="pegasus_version",default=None, help = "Pegasus version.")
예제 #11
0
파일: commands.py 프로젝트: juve/pegasus
 def __init__(self):
     LoggingCommand.__init__(self)
     _add_common_options(self)
예제 #12
0
파일: commands.py 프로젝트: juve/pegasus
 def __init__(self):
     LoggingCommand.__init__(self)
     _add_common_options(self)
     self.parser.add_option("-e", "--version-value", action="store_false", dest="version_value",
                            default=True, help="Show actual version values.")
예제 #13
0
파일: commands.py 프로젝트: maduhu/pegasus
 def __init__(self):
     LoggingCommand.__init__(self)
     self.parser.add_option("-d", "--debug", action="store_true", dest="debug",
                            default=None, help="Enable debugging")