Merge pull request #2035 from Emzy/ops/build-mempool

Add mempool build as final step on prod install
This commit is contained in:
wiz 2022-07-08 15:34:50 +02:00 committed by GitHub
commit c4638f2ac5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1613,7 +1613,10 @@ EOF
;;
esac
##### Build Mempool
echo "[*] Build Mempool"
osSudo "${MEMPOOL_USER}" sh -c "cd ${MEMPOOL_HOME} && ./upgrade"
@ -1692,8 +1695,21 @@ esac
##### finish
echo 'Please reboot to start all the services.'
case $OS in
FreeBSD)
;;
Debian)
echo "This are the generated Tor addresses:"
echo "${NGINX_MEMPOOL_ONION}"
echo "${NGINX_BISQ_ONION}"
echo "${NGINX_LIQUID_ONION}"
;;
esac
echo
echo 'Please reboot to start all the services.'
echo '[*] Done!'
exit 0