summaryrefslogtreecommitdiffstats
path: root/ipalib/cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/cli.py')
-rw-r--r--ipalib/cli.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/ipalib/cli.py b/ipalib/cli.py
index 39773d739..161ea1d82 100644
--- a/ipalib/cli.py
+++ b/ipalib/cli.py
@@ -97,22 +97,6 @@ class console(frontend.Application):
)
-class env(frontend.Application):
- """
- Show environment variables.
- """
-
- def run(self):
- return tuple(
- (key, self.api.env[key]) for key in self.api.env
- )
-
- def output_for_cli(self, ret):
- for (key, value) in ret:
- print '%s = %r' % (key, value)
-
-
-
class show_api(text_ui):
'Show attributes on dynamic API object'
@@ -198,8 +182,6 @@ cli_application_commands = (
console,
show_api,
plugins,
- env,
-
)