Browse Source
Merge pull request #335 from openoms/raspiblitz-dev
fix missing `pip requests` in dietpi for autounlock
dev
Christian Rotzoll
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
home.admin/config.scripts/lnd.autounlock.sh
|
|
@ -1,5 +1,8 @@ |
|
|
|
#!/bin/bash |
|
|
|
|
|
|
|
# requests missing in dietpi |
|
|
|
sudo pip install requests |
|
|
|
|
|
|
|
# command info |
|
|
|
if [ $# -eq 0 ] || [ "$1" = "-h" ] || [ "$1" = "-help" ]; then |
|
|
|
echo "small config script to autounlock lnd after restart" |
|
|
|