mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-15 09:59:16 +00:00
34 lines
1.2 KiB
Bash
Executable File
34 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
PASSWORD=$1
|
|
|
|
HASH_SHA256=$(echo -n "$PASSWORD" | sha256sum | awk '{print $1}')
|
|
HASH_BCRYPT=$(/usr/local/bin/python3 -c "import bcrypt; print(bcrypt.hashpw(b\"$PASSWORD\", bcrypt.gensalt()).decode(\"ascii\"))")
|
|
|
|
# If pass did not change and all hash files exist, exit success
|
|
if [ -f /home/bitcoin/.mynode/.hashedpw ]; then
|
|
OLD_HASH_SHA256=$(cat /home/bitcoin/.mynode/.hashedpw)
|
|
if [ "$OLD_HASH_SHA256" = "$HASH_SHA256" ] && [ -f /home/bitcoin/.mynode/.hashedpw_bcrypt ]; then
|
|
exit 0;
|
|
fi
|
|
fi
|
|
|
|
|
|
# Change Linux Password
|
|
echo "admin:$PASSWORD" | chpasswd
|
|
|
|
# Save hashed password
|
|
echo "$HASH_SHA256" > /home/bitcoin/.mynode/.hashedpw
|
|
echo "$HASH_BCRYPT" > /home/bitcoin/.mynode/.hashedpw_bcrypt
|
|
|
|
# Change RTL password
|
|
if [ -f /mnt/hdd/mynode/rtl/RTL-Config.json ]; then
|
|
sed -i "s/\"multiPassHashed\":.*/\"multiPassHashed\": \"$HASH_SHA256\",/g" /mnt/hdd/mynode/rtl/RTL-Config.json
|
|
systemctl restart rtl &
|
|
fi
|
|
|
|
# Change Thunderhub password
|
|
if [ -f /mnt/hdd/mynode/thunderhub/thub_config.yaml ]; then
|
|
sed -i "s#masterPassword:.*#masterPassword: \"thunderhub-$HASH_BCRYPT\"#g" /mnt/hdd/mynode/thunderhub/thub_config.yaml
|
|
systemctl restart thunderhub &
|
|
fi |