Reformat documentation messages

This commit is contained in:
Tom Wiesing 2022-12-08 11:45:52 +01:00
parent aefde6eec2
commit c80c8f2297
No known key found for this signature in database
29 changed files with 61 additions and 61 deletions

View file

@ -16,13 +16,13 @@ import (
var DrupalUser wisski_distillery.Command = duser{}
type duser struct {
CheckCommonPasswords bool `short:"d" long:"check-common-passwords" description:"check for most common passwords. Operates on all users concurrently."`
CheckCommonPasswords bool `short:"d" long:"check-common-passwords" description:"check for most common passwords. operates on all users concurrently."`
CheckPasswdInteractive bool `short:"c" long:"check-password" description:"interactively check user password"`
ResetPasswd bool `short:"r" long:"reset-password" description:"reset password for user"`
Login bool `short:"l" long:"login" description:"print url to login as"`
Positionals struct {
Slug string `positional-arg-name:"SLUG" required:"1-1" description:"slug of instance to manage"`
User string `positional-arg-name:"USER" description:"username to manage. May be omitted for some actions"`
User string `positional-arg-name:"USER" description:"username to manage. may be omitted for some actions"`
} `positional-args:"true"`
}