27 lines
650 B
Bash
Executable file
27 lines
650 B
Bash
Executable file
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2023 JELOS (https://github.com/JustEnoughLinuxOS)
|
|
|
|
# Minimal OS variable loading for performance
|
|
. /etc/profile.d/001-functions
|
|
|
|
tocon "Setting root password..."
|
|
|
|
if [ ! -d "/storage/.cache/samba" ]
|
|
then
|
|
mkdir -p /storage/.cache/samba
|
|
touch /storage/.cache/samba/smbpasswd
|
|
fi
|
|
|
|
ROTATION=$(get_setting rotate.root.password)
|
|
if [ "${ROTATION}" == "0" ]
|
|
then
|
|
ROOTPASS=$(get_setting root.password)
|
|
setrootpass "${ROOTPASS}"
|
|
exit 0
|
|
fi
|
|
|
|
# Randomly generate the root password on startup
|
|
ROOTPASS=$(openssl rand -base64 10 2>/dev/null | sed "s#==##g")
|
|
|
|
/usr/bin/setrootpass "${ROOTPASS}"
|