diff options
author | Rob Crittenden <rcritten@redhat.com> | 2008-10-22 17:52:32 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2008-10-22 17:52:32 -0400 |
commit | f189b02996668e5d600f1abed675cb20cd72290f (patch) | |
tree | 3d28f8a192e6de150482277bdf61cfeeac618d61 /ipa | |
parent | d44afa0f1a19d5e71c5578eedefda2dccd6dc083 (diff) | |
download | freeipa-f189b02996668e5d600f1abed675cb20cd72290f.tar.gz freeipa-f189b02996668e5d600f1abed675cb20cd72290f.tar.xz freeipa-f189b02996668e5d600f1abed675cb20cd72290f.zip |
Return a value to the shell that called ipa
Diffstat (limited to 'ipa')
-rwxr-xr-x | ipa | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -25,9 +25,10 @@ Command Line Interface for IPA Administration. The CLI functionality is implemented in ipalib/cli.py """ +import sys from ipalib import api from ipalib.cli import CLI import ipalib.load_plugins cli = CLI(api) -cli.run() +sys.exit(cli.run()) |