Skip to content
Extraits de code Groupes Projets
Valider 51a02409 rédigé par Raphael's avatar Raphael
Parcourir les fichiers

Another try at script server fix

parent 0c5d1972
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -7,19 +7,20 @@ ...@@ -7,19 +7,20 @@
PORT=3000 PORT=3000
while getopts ":p:" OPTION while getopts ":p:" OPTION
do do
if OPTION='p' if [ $OPTION == 'p' ]
then then
PORT=$OPTARG PORT=$OPTARG
fi fi
done done
services=$( netstat -nl | grep '[^:]:'$PORT'[ \t]') services=$( netstat -nl | grep ":$PORT[ \t]")
test -n "$services" && { test -n "$services" && {
echo "Warning: something is already using port "$PORT echo "Warning: something is already using port "$PORT
echo " $services" echo " $services"
exit exit
} }
exit
# Check if Mongo is running # Check if Mongo is running
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter