mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
29 lines
740 B
Bash
29 lines
740 B
Bash
#!/usr/bin/env bash
|
|
|
|
SRC=$(cd $(dirname "$0"); pwd)
|
|
source "${SRC}/include.sh"
|
|
|
|
cd $file_path
|
|
|
|
echo "################## GRACEFUL RELOAD 2 ###################"
|
|
|
|
echo "Launching"
|
|
$pm2 start graceful-exit-no-listen.js -i 2 --name="graceful2" -o "grace2.log" -e "grace-err2.log"
|
|
should 'should start processes' 'online' 2
|
|
|
|
OUT_LOG=`$pm2 prettylist | grep -m 1 -E "pm_out_log_path:" | sed "s/.*'\([^']*\)',/\1/"`
|
|
cat /dev/null > $OUT_LOG
|
|
|
|
#### Graceful reload name
|
|
$pm2 gracefulReload graceful2
|
|
|
|
echo "PATH: $OUT_LOG"
|
|
|
|
TEXT=$(cat $OUT_LOG)
|
|
|
|
echo "TEXT: $TEXT"
|
|
|
|
OUT=`grep "Finished closing connections" "$OUT_LOG" | wc -l`
|
|
[ $OUT -eq 1 ] || fail "Non-listening process not restarted gracefuly"
|
|
success "Non-listening process restarted gracefuly"
|