summaryrefslogtreecommitdiff
path: root/source4/setup
diff options
context:
space:
mode:
authorAndrew Kroeger <andrew@id10ts.net>2009-09-08 02:34:56 -0500
committerMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>2009-09-10 01:09:55 +0200
commitebdb9da78e4ab66a633145d668ef4f777120f9c2 (patch)
treec9ad127b94a137536bfb429a53c5787b3cacd221 /source4/setup
parent3cbcaa139ca490b1b457f6a623f1a3680cae9a04 (diff)
downloadsamba-ebdb9da78e4ab66a633145d668ef4f777120f9c2.tar.gz
samba-ebdb9da78e4ab66a633145d668ef4f777120f9c2.tar.bz2
samba-ebdb9da78e4ab66a633145d668ef4f777120f9c2.zip
s4:pwsettings: Show default values in help messages.
Diffstat (limited to 'source4/setup')
-rwxr-xr-xsource4/setup/pwsettings8
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/setup/pwsettings b/source4/setup/pwsettings
index 44e12d0a98..cd9c07dfb5 100755
--- a/source4/setup/pwsettings
+++ b/source4/setup/pwsettings
@@ -33,13 +33,13 @@ parser.add_option("-H", help="LDB URL for database or target server", type=str)
parser.add_option("--complexity",
help="The password complexity (on | off | default). Default is 'on'", type=str)
parser.add_option("--history-length",
- help="The password history length (<integer> | default)", type=str)
+ help="The password history length (<integer> | default). Default is 24.", type=str)
parser.add_option("--min-pwd-length",
- help="The minimum password length (<integer> | default)", type=str)
+ help="The minimum password length (<integer> | default). Default is 7.", type=str)
parser.add_option("--min-pwd-age",
- help="The minimum password age (<integer in days> | default)", type=str)
+ help="The minimum password age (<integer in days> | default). Default is 0.", type=str)
parser.add_option("--max-pwd-age",
- help="The maximum password age (<integer in days> | default)", type=str)
+ help="The maximum password age (<integer in days> | default). Default is 43.", type=str)
opts, args = parser.parse_args()