iankelling.org
/
git
/
automated-distro-installer
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
etiona fixes, new bash-trace
[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