use disk/by-id if possibe, other small fixes
[automated-distro-installer] / fai / config / scripts / DEBIAN / 10-rootpw
1 #! /bin/bash
2
3 error=0; trap 'error=$(($?>$error?$?:$error))' ERR # save maximum error code
4
5 # set root password
6 $ROOTCMD usermod -p "$ROOTPW" root
7
8 exit $error