mynode/rootfs/standard/usr/bin/pre_lnd.sh
2019-07-05 20:45:42 -05:00

10 lines
271 B
Bash
Executable File

#!/bin/bash
# Make sure we have wallet pw
mkdir -p /mnt/hdd/mynode/settings
if [ ! -f /mnt/hdd/mynode/settings/.lndpw ]; then
< /dev/urandom tr -dc A-Za-z0-9 | head -c${1:-24} > /mnt/hdd/mynode/settings/.lndpw
chmod 600 /mnt/hdd/mynode/settings/.lndpw
fi
exit 0