|
@@ -81,4 +81,21 @@ def srv_info(ctx):
|
|
|
|
|
|
\b
|
|
|
"""
|
|
|
- command_ctl(ctx, 'core.version')
|
|
|
+ command_ctl(ctx, 'core.version')
|
|
|
+
|
|
|
+##
|
|
|
+#
|
|
|
+#
|
|
|
[email protected]('ppdefines', short_help='Show pre-processor defines')
|
|
|
[email protected]('full', '--full', is_flag=True,
|
|
|
+ help='Show full format of the records.')
|
|
|
+@pass_context
|
|
|
+def srv_ppdefines(ctx, full):
|
|
|
+ """Show pre-processor defines
|
|
|
+
|
|
|
+ \b
|
|
|
+ """
|
|
|
+ if full:
|
|
|
+ command_ctl(ctx, 'core.ppdefines_full')
|
|
|
+ else:
|
|
|
+ command_ctl(ctx, 'core.ppdefines')
|