zeus
4 years ago
4 changed files with 54 additions and 6 deletions
@ -1,4 +1,50 @@ |
|||
#!/bin/bash |
|||
|
|||
pm2 stop venusclient |
|||
SOURCE="${BASH_SOURCE[0]}" |
|||
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink |
|||
TARGET="$(readlink "$SOURCE")" |
|||
if [[ $TARGET == /* ]]; then |
|||
#echo "SOURCE '$SOURCE' is an absolute symlink to '$TARGET'" |
|||
SOURCE="$TARGET" |
|||
else |
|||
DIR="$( dirname "$SOURCE" )" |
|||
#echo "SOURCE '$SOURCE' is a relative symlink to '$TARGET' (relative to '$DIR')" |
|||
SOURCE="$DIR/$TARGET" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located |
|||
fi |
|||
done |
|||
|
|||
SRPATH="$( dirname "$SOURCE" )" |
|||
SFPATH="$( cd -P "$( dirname "$SOURCE" )" && pwd )" |
|||
if [ "$SFPATH" != "$SRPATH" ]; then |
|||
RDIR=$SRPATH # relativ path directory |
|||
fi |
|||
|
|||
cwdir=$PWD |
|||
wdir=$SFPATH |
|||
|
|||
if [ "$cwdir" != "$wdir" ]; then |
|||
cd $wdir |
|||
fi |
|||
|
|||
pm2 stop venusclient > /dev/null 2>&1 |
|||
sleep 1 |
|||
pm2 status |
|||
|
|||
|
|||
txturl='\033[1;36m' |
|||
txturl1='\033[0;36m' |
|||
txtg='\033[0;32m' |
|||
NOCOLOR='\033[0m' |
|||
|
|||
echo -e "$( |
|||
cat << EOM |
|||
|
|||
${txtg} DONE ${NOCOLOR} |
|||
|
|||
${NOCOLOR} |
|||
|
|||
EOM |
|||
)" |
|||
|
|||
|
|||
|
|||
|
Loading…
Reference in new issue