Fixed typo in multi-service_container.md file (#3070)

This commit is contained in:
tompizmor 2017-04-26 22:46:54 +02:00 committed by John Mulhausen
parent 62fb170509
commit 8ce933c965
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ this in a few different ways.
while /bin/true; do
PROCESS_1_STATUS=$(ps aux |grep -q my_first_process)
PROCESS_2_STATUS=$(ps aux |grep -q my_second_process)
if [ $PROCESS_!_STATUS || $PROCESS_2_STATUS ]; then
if [ $PROCESS_1_STATUS || $PROCESS_2_STATUS ]; then
echo "One of the processes has already exited."
exit -1
fi