upstream 00f2ea2b8 as of 2018-09-02
[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 if [ -n "$ROOTPW" ]; then
7 $ROOTCMD usermod -p "$ROOTPW" root
8 else
9 $ROOTCMD usermod -L root
10 fi
11
12 exit $error