1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
# This is the default configuration file for the update-images-passwd
# command.
#
# To add more configs you just have to add one more config file to
# /etc/nfsboot/ with the name *.pwdconf. All will be used when the command is
# runned.
#
# A space separated list of (grep) matches that match the uids that should
# be syncronized from the source image to the destination images.
UIDM="[3-9][0-9][0-9]"
# A space separated list of (grep) matches that match the gids that should
# be syncronized from the source image to the destination images.
GIDM="[3-9][0-9][0-9] 24 25 29 40"
# Tell which directories that contain the complete debian image of a.
# (or at least contains the etc dir).
DESTIMAGES=""
# The source image that should be used as a master archive.
SRCIMAGE="/"
# The passwd file name.
PWDF=etc/passwd
# The shadow passwd file name.
SHDF=etc/shadow
# The group file name.
GRPF=etc/group
# The shadow group file name (is that one used at all?).
SGRF=etc/sgroup
|