10 lines
215 B
Bash
10 lines
215 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# This bash script will be used to start the lighthouse client
|
||
|
# The 0.0.0.0 is not safe.
|
||
|
|
||
|
lighthouse bn \
|
||
|
--http --http-address 0.0.0.0 --metrics --private --network $NETWORK &
|
||
|
|
||
|
tail -f /dev/null
|