diff options
author | Rob Crittenden <rcritten@redhat.com> | 2015-01-07 15:43:18 -0500 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2015-01-08 11:25:05 -0500 |
commit | cbf26974f89de40c1db8eda617073590ebe817d4 (patch) | |
tree | 1eb3b975ebfc9da959269b2e9b14a44b401df181 | |
parent | 45cb73a21a90084818c3057e362ef9459f1600f3 (diff) | |
download | ipsilon.git-33.tar.gz ipsilon.git-33.tar.xz ipsilon.git-33.zip |
Fix a couple of incorrect help messages33
https://fedorahosted.org/ipsilon/ticket/33
-rwxr-xr-x | ipsilon/install/ipsilon-server-install | 2 | ||||
-rw-r--r-- | ipsilon/login/authldap.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ipsilon/install/ipsilon-server-install b/ipsilon/install/ipsilon-server-install index 1b9e58f..be346a1 100755 --- a/ipsilon/install/ipsilon-server-install +++ b/ipsilon/install/ipsilon-server-install @@ -266,7 +266,7 @@ def parse_args(plugins): parser.add_argument('--config-profile', default=None, help="File containing install options") parser.add_argument('--server-debugging', action='store_true', - help="Uninstall the server and all data") + help="Enable server debug output") parser.add_argument('--uninstall', action='store_true', help="Uninstall the server and all data") diff --git a/ipsilon/login/authldap.py b/ipsilon/login/authldap.py index 0a5bd3b..5899ed2 100644 --- a/ipsilon/login/authldap.py +++ b/ipsilon/login/authldap.py @@ -180,7 +180,7 @@ class Installer(object): def install_args(self, group): group.add_argument('--ldap', choices=['yes', 'no'], default='no', - help='Configure PAM authentication') + help='Configure LDAP authentication') group.add_argument('--ldap-server-url', action='store', help='LDAP Server Url') group.add_argument('--ldap-bind-dn-template', action='store', |