From 4f228640806215999f2e86631ef90102c7cd3e24 Mon Sep 17 00:00:00 2001 From: Stephan Oeste Date: Fri, 8 Jul 2022 13:14:15 +0200 Subject: [PATCH 1/2] Add mempool build as final step on prod install --- production/install | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/production/install b/production/install index 9a48b50c5..15e4e3475 100755 --- a/production/install +++ b/production/install @@ -1613,7 +1613,10 @@ EOF ;; esac +##### Build Mempool +echo "[*] Build Mempool" +osSudo "${MEMPOOL_USER}" sh -c "cd ${MEMPOOL_HOME} && ./upgrade" @@ -1692,8 +1695,19 @@ 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} ${NGINX_BISQ_ONION} ${NGINX_LIQUID_ONION}" + ;; +esac + +echo +echo 'Please reboot to start all the services.' echo '[*] Done!' exit 0 From 83c383b1ecd64c530e175aae515c9791fa81ebca Mon Sep 17 00:00:00 2001 From: wiz Date: Fri, 8 Jul 2022 15:34:10 +0200 Subject: [PATCH 2/2] Print onions on separate lines after prod install --- production/install | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/production/install b/production/install index 15e4e3475..9eb66b7f6 100755 --- a/production/install +++ b/production/install @@ -1702,7 +1702,9 @@ case $OS in Debian) echo "This are the generated Tor addresses:" - echo "${NGINX_MEMPOOL_ONION} ${NGINX_BISQ_ONION} ${NGINX_LIQUID_ONION}" + echo "${NGINX_MEMPOOL_ONION}" + echo "${NGINX_BISQ_ONION}" + echo "${NGINX_LIQUID_ONION}" ;; esac