#!/bin/bash

if [ -x /usr/bin/curl ]; then
    /usr/bin/curl http://localhost:${port}/admin/networkUp
else
    wget -qO- http://localhost:${port}/admin/networkUp &> /dev/null
fi

