Fixed irritating typo that caused the occurance of a file called '1' with some error message within.
This commit is contained in:
parent
e24cf063e9
commit
7a578ff88b
5
ppss.sh
5
ppss.sh
|
@ -38,7 +38,7 @@ trap 'kill_process; ' INT
|
||||||
|
|
||||||
# Setting some vars. Do not change.
|
# Setting some vars. Do not change.
|
||||||
SCRIPT_NAME="Distributed Parallel Processing Shell Script"
|
SCRIPT_NAME="Distributed Parallel Processing Shell Script"
|
||||||
SCRIPT_VERSION="2.32"
|
SCRIPT_VERSION="2.33"
|
||||||
|
|
||||||
# The first argument to this script is always the 'mode'.
|
# The first argument to this script is always the 'mode'.
|
||||||
MODE="$1"
|
MODE="$1"
|
||||||
|
@ -210,7 +210,7 @@ showusage () {
|
||||||
kill_process () {
|
kill_process () {
|
||||||
|
|
||||||
|
|
||||||
kill $LISTENER_PID > /dev/null 2&>1
|
kill $LISTENER_PID > /dev/null 2>&1
|
||||||
sleep 1
|
sleep 1
|
||||||
cleanup
|
cleanup
|
||||||
sleep 1
|
sleep 1
|
||||||
|
@ -1488,7 +1488,6 @@ start_all_workers () {
|
||||||
start_single_worker
|
start_single_worker
|
||||||
((i++))
|
((i++))
|
||||||
done
|
done
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
get_status_of_node () {
|
get_status_of_node () {
|
||||||
|
|
Loading…
Reference in New Issue