mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-14 17:39:16 +00:00
10 lines
260 B
Bash
Executable File
10 lines
260 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Make sure we have wallet pw
|
|
mkdir -p /home/bitcoin/.mynode/
|
|
if [ ! -f /home/bitcoin/.mynode/.lndpw ]; then
|
|
< /dev/urandom tr -dc A-Za-z0-9 | head -c${1:-24} > /home/bitcoin/.mynode/.lndpw
|
|
chmod 600 /home/bitcoin/.mynode/.lndpw
|
|
fi
|
|
|
|
exit 0 |