🗃️ Committing everything that changed 🗃️

rootfs/root/docker/setup/04-users.sh
This commit is contained in:
casjay 2024-09-07 14:43:49 -04:00
parent 7872350c62
commit edf37e8312
Signed by untrusted user who does not match committer: jason
GPG Key ID: 1AB309F42A764145

View File

@ -24,10 +24,10 @@ set -o pipefail
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Set env variables # Set env variables
exitCode=0 exitCode=0
PASSWORD="${ROOT_PASS:-password}"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Predifined actions # Predifined actions
echo "password" | passwd "root" --stdin echo -e "$PASSWORD\n$PASSWORD" | passwd "root"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Main script # Main script