Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 May 2001 06:20:13 -0700 (PDT)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/usr.sbin/adduser adduser.perl
Message-ID:  <200105021320.f42DKDR50818@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
adrian      2001/05/02 06:20:13 PDT

  Modified files:
    usr.sbin/adduser     adduser.perl 
  Log:
  Extend adduser to create "locked" accounts. Adduser can now lock an
  account at creation, create accounts with a "*" password (so you can
  use alternate authentication schemes without fearing a "default" password
  biting you later), and blank passwords.
  
  Yes, adduser could create a blank password account, but this makes it
  slightly more difficult to shoot yourself in the foot.
  
  The /etc/adduser.conf entries are:
  
  # use password-based authentication for new users
  # defaultusepassword =  "yes" | "no"
  defaultusepassword = "yes"
  
  # enable account password at creation
  # (the password will be prepended with a star if the account isn't enabled)
  # defaultenableaccount = "yes" | "no"
  defaultenableaccount = "yes"
  
  # allow blank passwords
  # defaultemptypassword = "yes" | "no"
  defaultemptypassword = "no"
  
  Requested by: alfred
  Reviewed by: alfred
  
  Revision  Changes    Path
  1.46      +138 -16   src/usr.sbin/adduser/adduser.perl


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200105021320.f42DKDR50818>