mirror of
https://github.com/MAGICGrants/autoforward-autoconvert.git
synced 2026-01-07 20:54:02 -05:00
14 lines
310 B
Bash
Executable File
14 lines
310 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
ADDITIONAL_FLAGS=""
|
|
|
|
if [ "$TESTNET" = "1" ]; then
|
|
ADDITIONAL_FLAGS="--testnet"
|
|
fi
|
|
|
|
set -- "monero-wallet-rpc" "--non-interactive" "--rpc-bind-ip=0.0.0.0" "--confirm-external-bind" $ADDITIONAL_FLAGS "$@"
|
|
|
|
# Start the daemon using fixuid
|
|
# to adjust permissions if needed
|
|
exec fixuid -q "$@" |