Sfoglia il codice sorgente

install net-tools if needed

tags/v1.4.28
Jonathan Cobb 3 anni fa
parent
commit
9636c87364
1 ha cambiato i file con 4 aggiunte e 0 eliminazioni
  1. +4
    -0
      bin/ubuntu_connect_bubble

+ 4
- 0
bin/ubuntu_connect_bubble Vedi File

@@ -75,6 +75,10 @@ if [[ -z "$(which jq)" ]] ; then
echo "Installing jq ..."
sudo apt update && sudo apt install -y jq || die "Error installing jq"
fi
if [[ -z "$(which route)" ]] ; then
echo "Installing net-tools (route command) ..."
sudo apt update && sudo apt install -y net-tools || die "Error installing net-tools"
fi

ARG_HOST="${1}"
if [[ -z "${ARG_HOST}" ]] ; then


Caricamento…
Annulla
Salva