mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-09-22 16:10:55 +02:00
bitcoin.chains: check for signetd by joininbox
This commit is contained in:
@@ -43,6 +43,14 @@ function removeParallelService() {
|
|||||||
fi
|
fi
|
||||||
sudo systemctl stop ${prefix}bitcoind
|
sudo systemctl stop ${prefix}bitcoind
|
||||||
sudo systemctl disable ${prefix}bitcoind
|
sudo systemctl disable ${prefix}bitcoind
|
||||||
|
if [ ${bitcoinprefix} = signet ];then
|
||||||
|
# check for signet service set up by joininbox
|
||||||
|
if [ -f "/etc/systemd/system/signetd.service" ];then
|
||||||
|
sudo systemctl stop signetd
|
||||||
|
sudo systemctl disable signetd
|
||||||
|
echo "# The signetd.service is stopped and disabled"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
echo "# Bitcoin Core on ${CHAIN} service is stopped and disabled"
|
echo "# Bitcoin Core on ${CHAIN} service is stopped and disabled"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user