Merge branch 'openoms-ufw-clean' into v1.6

This commit is contained in:
frennkie 2020-05-26 20:55:24 +01:00
commit 98e085bc56
5 changed files with 0 additions and 5 deletions

View file

@ -157,7 +157,6 @@ EOF
# open firewall
echo "*** Updating Firewall ***"
sudo ufw allow 3002 comment 'btc-rpc-explorer'
sudo ufw --force enable
echo ""
# install service

View file

@ -125,7 +125,6 @@ EOF
# open firewall
echo "*** Updating Firewall ***"
sudo ufw allow 25441 comment 'cryptoadvance-specter'
sudo ufw --force enable
echo ""
echo "*** Installing udev-rules for hardware-wallets ***"

View file

@ -173,7 +173,6 @@ EOF
# open firewall
echo "*** Updating Firewall ***"
sudo ufw allow 3000 comment 'RTL'
sudo ufw --force enable
echo ""
# install service

View file

@ -91,7 +91,6 @@ HiddenServicePort $toPort 127.0.0.1:$fromPort" | sudo tee -a /etc/tor/torrc
echo "$TOR_ADDRESS"
echo "use with the port: $toPort"
echo ""
alreadyThere=$(sudo cat /etc/tor/torrc 2>/dev/null | grep -c "\b127.0.0.1:$fromPort2\b")
if [ ${#toPort2} -gt 0 ]; then
if [ ${alreadyThere} -eq 0 ]; then
echo "or the port: $toPort2"

View file

@ -79,6 +79,5 @@ sudo systemctl enable lnd
# make sure port is open on firewall
sudo ufw allow ${portnumber} comment 'LND Port'
sudo ufw --force enable
echo "needs reboot to activate new setting -> sudo shutdown -r now"