distribution/packages/jelos/autostart/007-rootpw

27 lines
597 B
Text
Raw Normal View History

2022-03-28 23:53:26 +00:00
#!/bin/bash
2022-02-05 14:23:32 +00:00
# SPDX-License-Identifier: Apache-2.0
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
. /etc/profile
tocon "Setting root password..."
if [ ! -d "/storage/.cache/samba" ]
then
mkdir -p /storage/.cache/samba
touch /storage/.cache/samba/smbpasswd
fi
2022-02-05 14:23:32 +00:00
ROTATION=$(get_setting rotate.root.password)
if [ "${ROTATION}" == "0" ]
then
ROOTPASS=$(get_setting root.password)
setrootpass "${ROOTPASS}"
2022-02-05 14:23:32 +00:00
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}"