upstream 5.1 sample config
[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