1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/duniter_ynh.git synced 2024-09-03 18:26:35 +02:00

Checking node availability.

This commit is contained in:
Moul 2015-12-29 08:03:44 -05:00
parent c92162d5d8
commit 752856dc78

View file

@ -24,6 +24,14 @@ if [[ ! $? -eq 0 ]]; then
exit 1
fi
# Check node availability
if curl --output /dev/null --silent --head --fail "$sync_node:$sync_port/node/summary"; then
echo "Node available."
else
echo "Node $sync_node:$sync_port not available"
exit 1
fi
# Open port on firewall
sudo yunohost firewall allow TCP $port > /dev/null 2>&1