fix description
This commit is contained in:
parent
b9e341dfc1
commit
fbcf30d9d5
|
@ -10,14 +10,14 @@ private string programName = "chkpass";
|
||||||
int main(string[] args) {
|
int main(string[] args) {
|
||||||
auto argumets = new Program(programName, chkpassVersion)
|
auto argumets = new Program(programName, chkpassVersion)
|
||||||
.add(new Command("check", "check user password")
|
.add(new Command("check", "check user password")
|
||||||
.add(new Option("m", "module", "use a dedicated PAM module")
|
.add(new Option("m", "module", "use a special PAM module")
|
||||||
.optional)
|
.optional)
|
||||||
.add(new Argument("username")
|
.add(new Argument("username")
|
||||||
.required)
|
.required)
|
||||||
.add(new Argument("password")
|
.add(new Argument("password")
|
||||||
.required))
|
.required))
|
||||||
.add(new Command("change", "change user password")
|
.add(new Command("change", "change user password")
|
||||||
.add(new Option("m", "module", "use a dedicated PAM module")
|
.add(new Option("m", "module", "use a special PAM module")
|
||||||
.optional)
|
.optional)
|
||||||
.add(new Argument("username")
|
.add(new Argument("username")
|
||||||
.required)
|
.required)
|
||||||
|
|
Loading…
Reference in New Issue