mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-10-09 20:32:52 +02:00
typo fix
This commit is contained in:
2
FAQ.md
2
FAQ.md
@@ -743,7 +743,7 @@ groupadd forwardings
|
|||||||
To add a forwarding user run:
|
To add a forwarding user run:
|
||||||
```
|
```
|
||||||
useradd -g forwardings -d /home [USERNAME]
|
useradd -g forwardings -d /home [USERNAME]
|
||||||
echo "command="date" [CONTENT-OF-RASPIBLITZ-ROOT-SSH-PUBKEY]" > /etc/ssh/authorized_keys/[USERNAME]
|
echo 'command="date" [CONTENT-OF-RASPIBLITZ-ROOT-SSH-PUBKEY]' > /etc/ssh/authorized_keys/[USERNAME]
|
||||||
passwd [USERNAME]
|
passwd [USERNAME]
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@@ -103,7 +103,7 @@ if sys.argv[1] == "on":
|
|||||||
print("[INTERNAL-PORT]<[EXTERNAL-PORT] external not number '%s'" % (sys.argv[i]))
|
print("[INTERNAL-PORT]<[EXTERNAL-PORT] external not number '%s'" % (sys.argv[i]))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
if port_internal == LNDPORT:
|
if port_internal == LNDPORT:
|
||||||
print("Detected LND Port Forwaring")
|
print("Detected LND Port Forwarding")
|
||||||
forwardingLND = True
|
forwardingLND = True
|
||||||
if port_internal != port_external:
|
if port_internal != port_external:
|
||||||
print("FAIL: When tunneling your local LND port '%s' it needs to be the same on the external server, but is '%s'" % (LNDPORT,port_external))
|
print("FAIL: When tunneling your local LND port '%s' it needs to be the same on the external server, but is '%s'" % (LNDPORT,port_external))
|
||||||
|
Reference in New Issue
Block a user