diskimage-builder/diskimage_builder/elements/devuser
Ian Wienand bfca36c772 Release 1.25.2
-----BEGIN PGP SIGNATURE-----
 
 iQEcBAABAgAGBQJYV1yqAAoJEBty/58O8cX8hLwIAKP66w6MdPN8PDgUOteui/Sx
 N0UFKJ9yR4GQOAP0NffPLjch5/g0iJLs3eFKOhtGC1LjbDjpVgjX8vW18ib8wBZK
 GemOZPF3uxg8FROrZF1vpoDy/cHgL1YV10hCnwdjN/r9rb8zOuSabqjW+Dennj2n
 fZ0SJfa8Owfudn3YxGuOymVb/wMtEloDmVGBEI1Y+h7osELCCDi3OXmwsA8qMsdl
 cTwbeugBs4PlOVbZUK/JKGuwIHKgPnDYzYu5KpXw77/MdjGT0fo5Tlq5AOBDI2sC
 9JOFEBDli4Ro05VwvI58ADMpvvOax+9EvOhLbB1dRPdZl21Iyb6gOdy2PUbFO0c=
 =aKxq
 -----END PGP SIGNATURE-----

Merge tag '1.25.2' into merge-branch

Release 1.25.2

Change-Id: I698bcf2e82117bd81649cd065a7af5cac85990c7
2017-02-02 11:20:00 +11:00
..
environment.d Release 1.25.2 2017-02-02 11:20:00 +11:00
extra-data.d Move elements & lib relative to diskimage_builder package 2016-11-01 17:27:41 -07:00
install.d Move elements & lib relative to diskimage_builder package 2016-11-01 17:27:41 -07:00
README.rst Move elements & lib relative to diskimage_builder package 2016-11-01 17:27:41 -07:00

=======
devuser
=======

Creates a user that is useful for development / debugging. The following
environment variables can be useful for configuration:

Environment Variables
---------------------

DIB_DEV_USER_USERNAME
  :Required: No
  :Default: devuser
  :Description: Username for the created user.

DIB_DEV_USER_SHELL
  :Required: No
  :Default: System default (The useradd default is used)
  :Description: Full path for the shell of the user. This is passed to useradd
    using the -s parameter. Note that this does not install the (possibly)
    required shell package.

DIB_DEV_USER_PWDLESS_SUDO
  :Required: No
  :Default: No
  :Description: Enable passwordless sudo for the user.

DIB_DEV_USER_AUTHORIZED_KEYS
  :Required: No
  :Default: $HOME/.ssh/id_{rsa,dsa}.pub
  :Description: Path to a file to copy into this users' .ssh/authorized_keys
    If this is not specified then an attempt is made to use a the building
    user's public key. To disable this behavior specify an invalid path for
    this variable (such as /dev/null).

DIB_DEV_USER_PASSWORD
  :Required: No
  :Default: Password is disabled
  :Description: Set the default password for this user. This is a fairly
    insecure method of setting the password and is not advised.