Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
X
xpub-epmc
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package Registry
Container Registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Literature-services
public-projects
xpub-epmc
Commits
fb042daf
Commit
fb042daf
authored
6 years ago
by
Nikos Marinos
Browse files
Options
Downloads
Patches
Plain Diff
Addresses #481
parent
350f8661
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!112
Shared data model
,
!113
Dev
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
runShellScript.sh
+7
-32
7 additions, 32 deletions
runShellScript.sh
with
7 additions
and
32 deletions
runShellScript.sh
+
7
−
32
View file @
fb042daf
...
@@ -4,11 +4,13 @@ cmd=$1
...
@@ -4,11 +4,13 @@ cmd=$1
echo
"runShellScript.sh
$cmd
"
echo
"runShellScript.sh
$cmd
"
# Start the first process
# Start the process
ps aux |
grep
"
$cmd
"
|
grep
-q
-v
grep
PROCESS_RESULT
=
`
ps aux |
grep
"
$cmd
"
|
grep
-v
"runShellScript.sh"
|
grep
-v
grep
`
PROCESS_1_STATUS
=
$?
echo
"PROCESS_1_STATUS:
$PROCESS_1_STATUS
"
echo
"
$PROCESS_RESULT
"
if
[
$PROCESS_1_STATUS
-ne
0
]
;
then
if
[
-z
"
$PROCESS_RESULT
"
]
then
echo
"Executing:
$cmd
"
echo
"Executing:
$cmd
"
$cmd
$cmd
status
=
$?
status
=
$?
...
@@ -21,30 +23,3 @@ else
...
@@ -21,30 +23,3 @@ else
echo
"Process
$cmd
already running"
echo
"Process
$cmd
already running"
exit
1
exit
1
fi
fi
# Start the second process
#./my_second_process -D
#status=$?
#if [ $status -ne 0 ]; then
# echo "Failed to start my_second_process: $status"
# exit $status
#fi
# Naive check runs checks once a minute to see if either of the processes exited.
# This illustrates part of the heavy lifting you need to do if you want to run
# more than one service in a container. The container exits with an error
# if it detects that either of the processes has exited.
# Otherwise it loops forever, waking up every 60 seconds
while
sleep
60
;
do
ps aux |grep
"
$cmd
"
|grep
-q
-v
grep
PROCESS_1_STATUS
=
$?
# ps aux |grep my_second_process |grep -q -v grep
# PROCESS_2_STATUS=$?
# If the greps above find anything, they exit with 0 status
# If they are not both 0, then something is wrong
if
[
$PROCESS_1_STATUS
-ne
0
]
;
then
# if [ $PROCESS_1_STATUS -ne 0 -o $PROCESS_2_STATUS -ne 0 ]; then
echo
"One of the processes has already exited."
exit
1
fi
done
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment