7 lines
103 B
Bash
7 lines
103 B
Bash
#!/bin/sh -x
|
|
|
|
if [ ! -z ${NEW_ROOT_PASSWORD+x} ]
|
|
then
|
|
echo "root:${NEW_ROOT_PASSWORD}" | chpasswd
|
|
fi
|