diff options
| author | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-08-02 12:47:50 +0000 |
|---|---|---|
| committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-08-02 12:47:50 +0000 |
| commit | 0c4addea3407c6268cd01be51e8d56a804e5b15d (patch) | |
| tree | 6a632c6d718df3fdad70db4b8a3569a58f595176 /pw/pwupd.h | |
| parent | f1bef959a51e2994216735586c6ef525f2728f10 (diff) | |
| download | pw-darwin-0c4addea3407c6268cd01be51e8d56a804e5b15d.tar.gz pw-darwin-0c4addea3407c6268cd01be51e8d56a804e5b15d.zip | |
Rewrite parsing subcommands arguments of pw(8)
Now each subcommands checks its arguments in a dedicated functions.
This helps improving input validation, code readability/maintainability
While here:
- Add a -y option to pw userdel/usermod so it can maintain NIS servers if
nispasswd is not defined in pw.conf(5)
- Allow pw -r <rootdir> to remove directory with userdel -r
- Fix bug when renaming a user which was not renaming the user name it groups
it is a member of.
- Only parse pw.conf(5) when needed.
Diffstat (limited to 'pw/pwupd.h')
| -rw-r--r-- | pw/pwupd.h | 17 |
1 files changed, 2 insertions, 15 deletions
@@ -76,29 +76,16 @@ struct userconf { char *default_class; /* Default user class */ uid_t min_uid, max_uid; /* Allowed range of uids */ gid_t min_gid, max_gid; /* Allowed range of gids */ - int expire_days; /* Days to expiry */ - int password_days; /* Days to password expiry */ + time_t expire_days; /* Days to expiry */ + time_t password_days; /* Days to password expiry */ }; struct pwconf { char rootdir[MAXPATHLEN]; char etcpath[MAXPATHLEN]; - char *newname; - char *config; - char *gecos; int fd; int rootfd; - int which; - bool quiet; - bool force; - bool all; - bool dryrun; - bool pretty; - bool v7; bool checkduplicate; - bool deletehome; - bool precrypted; - struct userconf *userconf; }; extern struct pwf PWF; |
