| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Ensure skeldir is abolute path (relatively to the rootdir) | Baptiste Daroussin | 2015-07-12 | 1 | -4/+10 |
| | | |||||
| * | pw -R <rootdir> userdel can now cleanup installation | Baptiste Daroussin | 2015-07-12 | 3 | -84/+76 |
| | | | | | | | | Rewrite rm_r to use *at function, allowing to remove home directories along with users. only crontabs and at(1) installation are not removed Relnotes: yes | ||||
| * | Rework the home directory creation and copy or the skel content to use *at | Baptiste Daroussin | 2015-07-12 | 4 | -87/+90 |
| | | | | | | | | | | functions This allows to simplify the code a bit for -R by not having to keep modifying path and also prepare the code to improve support -R in userdel While here, add regression tests for the functionality | ||||
| * | Make getarg return NULL if args is NULL | Baptiste Daroussin | 2015-07-12 | 2 | -5/+7 |
| | | |||||
| * | Fix regression: ensure when try to create the group and the user with the same | Baptiste Daroussin | 2015-07-11 | 1 | -12/+4 |
| | | | | | id if possible and nothing in particular was specified | ||||
| * | Remove now unused variable | Baptiste Daroussin | 2015-07-11 | 1 | -3/+0 |
| | | |||||
| * | Replace custom string array with stringlist(3) | Baptiste Daroussin | 2015-07-11 | 5 | -95/+35 |
| | | |||||
| * | Rework groupmod modification: | Baptiste Daroussin | 2015-07-11 | 1 | -61/+29 |
| | | | | | | Use gr_add(3) when possible to avoid code duplication. Use a simpler logic to delete members of a group | ||||
| * | Remove unused argument from pm_passwd | Baptiste Daroussin | 2015-07-11 | 1 | -4/+4 |
| | | |||||
| * | check the gecos format early: at the moment the -c option is parsed | Baptiste Daroussin | 2015-07-11 | 3 | -4/+7 |
| | | |||||
| * | Remove useless use of goto | Baptiste Daroussin | 2015-07-11 | 1 | -4/+3 |
| | | |||||
| * | Isolate pw lock/unlock into a separate function | Baptiste Daroussin | 2015-07-11 | 1 | -44/+78 |
| | | |||||
| * | homedir can only be populate during useradd | Baptiste Daroussin | 2015-07-11 | 1 | -3/+3 |
| | | |||||
| * | Make a separate groupdel/userdel from the main function | Baptiste Daroussin | 2015-07-11 | 4 | -34/+62 |
| | | |||||
| * | Make separate functions to show users and groups | Baptiste Daroussin | 2015-07-11 | 4 | -33/+78 |
| | | |||||
| * | Move the quiet flag into the configuration structure | Baptiste Daroussin | 2015-07-11 | 4 | -3/+7 |
| | | |||||
| * | Separate usernext/groupnext from the main functions | Baptiste Daroussin | 2015-07-11 | 3 | -29/+34 |
| | | |||||
| * | Do not try to set password on group if the group is added as a consequence of | Baptiste Daroussin | 2015-07-09 | 3 | -1/+3 |
| | | | | | | | of creating a user (regression from r285136) Reported by: Fabian Keil <fk@fabiankeil.de> | ||||
| * | pw: fail if an invalid entry is found while parsing master.passwd and group | Baptiste Daroussin | 2015-07-07 | 1 | -0/+7 |
| | | | | | | | PR: 198554 Reported by: diaran <fbsd@centraltech.co.uk> MFC after: 2 days | ||||
| * | Remove dead code | Baptiste Daroussin | 2015-07-05 | 1 | -15/+0 |
| | | |||||
| * | Also validate hours via strptime_l(3) | Baptiste Daroussin | 2015-07-05 | 1 | -51/+40 |
| | | | | | | Simplify the code, by only using one parser, ensure the dates (hours and dates) are valid | ||||
| * | Validate expiration dates | Baptiste Daroussin | 2015-07-05 | 1 | -0/+288 |
| | | | | | Use strptime_l(3) to validate the dates provided in input | ||||
| * | Fix validation of crypted password | Baptiste Daroussin | 2015-07-04 | 1 | -7/+6 |
| | | | | | Small cleanups | ||||
| * | Also validate inputs of pw groupmod -h and groupmod -H | Baptiste Daroussin | 2015-07-04 | 1 | -46/+46 |
| | | |||||
| * | Validate input of pw usermod -h and pwusermod -H | Baptiste Daroussin | 2015-07-04 | 3 | -60/+95 |
| | | | | | | | | Push the code that set the password into a separate function to improve readability Add regression tests about pw usermod -h and pw usermod -H | ||||
| * | When passwd or group information is changed (by pw, vipw, chpass, ...) | Renato Botelho | 2015-07-02 | 2 | -3/+21 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | temporary file is created and then a rename() call move it to official file. This operation didn't have any check to make sure data was written to disk and if a power cycle happens system could end up with a 0 length passwd or group database. There is a pfSense bug with more infor about it: https://redmine.pfsense.org/issues/4523 The following changes were made to protect passwd and group operations: * lib/libutil/gr_util.c: - Replace mkstemp() by mkostemp() with O_SYNC flag to create temp file - After rename(), fsync() call on directory for faster result * lib/libutil/pw_util.c - Replace mkstemp() by mkostemp() with O_SYNC flag to create temp file * usr.sbin/pwd_mkdb/pwd_mkdb.c - Added O_SYNC flag on dbopen() calls - After rename(), fsync() call on directory for faster result * lib/libutil/pw_util.3 - pw_lock() returns a file descriptor to master password file on success Differential Revision: https://reviews.freebsd.org/D2978 Approved by: bapt Sponsored by: Netgate | ||||
| * | Change the documentation to reflect where the -V option should be used | Baptiste Daroussin | 2015-06-14 | 1 | -2/+2 |
| | | | | | Suggested by: kientzle | ||||
| * | Add META_MODE support. | Simon J. Gerraty | 2015-06-13 | 0 | -0/+0 |
| |\ | | | | | | | | | | | | | | | | | | | | | Off by default, build behaves normally. WITH_META_MODE we get auto objdir creation, the ability to start build from anywhere in the tree. Still need to add real targets under targets/ to build packages. Differential Revision: D2796 Reviewed by: brooks imp | ||||
| | * | Merge sync of head | Simon J. Gerraty | 2015-05-27 | 10 | -263/+214 |
| | |\ | |||||
| | * | | Merge from head | Simon J. Gerraty | 2015-05-26 | 0 | -0/+0 |
| | |\| | |||||
| | * | | Merge from head@274682 | Simon J. Gerraty | 2014-11-19 | 6 | -11/+129 |
| | |\ \ | |||||
| | * \ \ | Merge head from 7/28 | Simon J. Gerraty | 2014-08-19 | 4 | -21/+9 |
| | |\ \ \ | |||||
| | * \ \ \ | Merge from head | Simon J. Gerraty | 2014-05-08 | 1 | -0/+51 |
| | |\ \ \ \ | |||||
| | * \ \ \ \ | Merge head | Simon J. Gerraty | 2014-04-28 | 5 | -21/+1031 |
| | |\ \ \ \ \ | |||||
| | * | | | | | | Merge head | Simon J. Gerraty | 2014-04-27 | 0 | -0/+0 |
| | |\| | | | | | |||||
| | * | | | | | | Merge from head | Simon J. Gerraty | 2013-09-05 | 3 | -6/+1139 |
| | |\ \ \ \ \ \ | |||||
| | * \ \ \ \ \ \ | sync from head | Simon J. Gerraty | 2013-04-12 | 2 | -75/+120 |
| | |\ \ \ \ \ \ \ | |||||
| | * \ \ \ \ \ \ \ | Sync with HEAD. | David E. O'Brien | 2013-02-08 | 13 | -250/+691 |
| | |\ \ \ \ \ \ \ \ | |||||
| | * \ \ \ \ \ \ \ \ | Correct the r242545 sync with head@242525. | David E. O'Brien | 2013-02-07 | 0 | -0/+0 |
| | |\ \ \ \ \ \ \ \ \ | |||||
| | * | | | | | | | | | | Sync from head | Simon J. Gerraty | 2012-11-04 | 17 | -21/+2733 |
| | |\| | | | | | | | | | |||||
| | * | | | | | | | | | | MFC: r237279: install filemon.h | David E. O'Brien | 2012-06-20 | 0 | -0/+0 |
| | |\ \ \ \ \ \ \ \ \ \ | |||||
| | * \ \ \ \ \ \ \ \ \ \ | MFC: r236422, r236592, r236593, r236594, r236620, r236621, r236622, & r236637 | David E. O'Brien | 2012-06-06 | 0 | -0/+0 |
| | |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | filemon(4) | ||||
| * | | | | | | | | | | | | | backout remove of -q option for pw [user|group] next | Baptiste Daroussin | 2015-06-08 | 4 | -9/+20 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While the return code is broken, some corner case usage depends on the functionnality, so backout until we get better regression tests covering those corner case usage. | ||||
| * | | | | | | | | | | | | | Fix typo | Baptiste Daroussin | 2015-06-08 | 1 | -1/+1 |
| | | | | | | | | | | | | | | |||||
| * | | | | | | | | | | | | | Fix mistakes than came along with r284139 | Baptiste Daroussin | 2015-06-07 | 1 | -2/+2 |
| | | | | | | | | | | | | | | |||||
| * | | | | | | | | | | | | | Remove '-q' support for pw [user|group] next | Baptiste Daroussin | 2015-06-07 | 4 | -20/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the intent of -q in this command is to return as exit status the value of the next group/user id, which does not make sense given exit status are limited to values between 0 and 255. | ||||
| * | | | | | | | | | | | | | Fix setting uid/gid min/max via pw | Baptiste Daroussin | 2015-06-07 | 1 | -4/+13 |
| | | | | | | | | | | | | | | |||||
| * | | | | | | | | | | | | | Fix generating configuration file | Baptiste Daroussin | 2015-06-07 | 3 | -5/+6 |
| | | | | | | | | | | | | | | |||||
| * | | | | | | | | | | | | | Fix duplicate checking | Baptiste Daroussin | 2015-06-07 | 4 | -18/+21 |
| | | | | | | | | | | | | | | |||||
| * | | | | | | | | | | | | | Remove uneeded code (already done by pw_make_v7) | Baptiste Daroussin | 2015-06-07 | 1 | -3/+0 |
| | | | | | | | | | | | | | | |||||
