comparison host/restart.sh @ 1628:520707a70379

add host
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 07 Dec 2021 23:29:58 -0700
parents
children
comparison
equal deleted inserted replaced
1627:07be5015159d 1628:520707a70379
1 #!/bin/bash
2
3 set -e
4
5 cd `dirname $0`;
6
7 if [ "$1" == "monitoring" ]; then
8 if [ ! -f "started.lock" ]; then
9 echo "stopped with stop script";
10 exit 0;
11 fi;
12 fi;
13 ./stop.sh;
14 ./start.sh;