예제 #1
0
파일: shell.py 프로젝트: lucian/quantum
 def build_option_parser(self, description, version):
     parser = super(QuantumDebugShell, self).build_option_parser(description, version)
     parser.add_argument(
         "--config-file",
         default=env("QUANTUM_TEST_CONFIG_FILE"),
         help=_("Config file for interface driver " "(You may also use l3_agent.ini)"),
     )
     return parser
예제 #2
0
파일: shell.py 프로젝트: whitekid/quantum
 def build_option_parser(self, description, version):
     parser = super(QuantumDebugShell,
                    self).build_option_parser(description, version)
     parser.add_argument('--config-file',
                         default=env('QUANTUM_TEST_CONFIG_FILE'),
                         help='Config file for interface driver '
                         '(You may also use l3_agent.ini)')
     return parser
예제 #3
0
파일: shell.py 프로젝트: a3linux/quantum
 def build_option_parser(self, description, version):
     parser = super(QuantumDebugShell, self).build_option_parser(
         description, version)
     parser.add_argument(
         '--config-file',
         default=env('TEST_CONFIG_FILE'),
         help='Config file for interface driver '
              '(You may also use l3_agent.ini)')
     return parser