You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
859 B
22 lines
859 B
10 years ago
|
from cement.core.controller import CementBaseController, expose
|
||
|
|
||
|
class EEImportslowlogController(CementBaseController):
|
||
|
class Meta:
|
||
|
label = 'import_slow_log'
|
||
|
stacked_on = 'base'
|
||
|
stacked_type = 'nested'
|
||
|
description = 'info command used for debugging issued with stack or site specific configuration'
|
||
|
arguments = [
|
||
|
(['--mysql'],
|
||
|
dict(help='get mysql configuration information', action='store_true') ),
|
||
|
(['--php'],
|
||
|
dict(help='get php configuration information', action='store_true') ),
|
||
|
(['--nginx'],
|
||
|
dict(help='get nginx configuration information', action='store_true') ),
|
||
|
]
|
||
|
|
||
|
@expose(hide=True)
|
||
|
def default(self):
|
||
|
# TODO Default action for ee debug command
|
||
|
print ("Inside EEImprtslowlogController.default().")
|