X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=blobdiff_plain;f=chroot-script;h=347bead51611ccb807d28b0b0d7614009ad538c2;hp=8f545cf4eb6e01c3890e4e8d898cab61f42a1e2d;hb=65c58bfa1cc8e90ecfa0d576a64e08a790c57d7e;hpb=17576f28917f7708e17d5add6497eb0efbbd4b59 diff --git a/chroot-script b/chroot-script index 8f545cf..347bead 100755 --- a/chroot-script +++ b/chroot-script @@ -221,8 +221,14 @@ passwords() echo "Activating shadow passwords." shadowconfig on + CHPASSWD_OPTION= + if chpasswd --help 2>&1 | grep -q -- '-m,' ; then + CHPASSWD_OPTION='-m' + fi + + if [ -n "$ROOTPASSWORD" ] ; then - echo root:"$ROOTPASSWORD" | chpasswd -m + echo root:"$ROOTPASSWORD" | chpasswd $CHPASSWD_OPTION export ROOTPASSWORD='' else a='1' @@ -240,7 +246,7 @@ passwords() a='1' b='2' else - echo root:"$a" | chpasswd -m + echo root:"$a" | chpasswd $CHPASSWD_OPTION unset a unset b fi