summaryrefslogtreecommitdiffstats
path: root/common/common-scripts/src/main/resources/scripts/startScript
blob: 94aec859ea5ff4340eaa7e89a83bd562d396628b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh -
STATUS=100

while [ \$STATUS -eq 100 ]
do
  ${exec}
  STATUS=\$?
  echo "Honeycomb exited with status: \$STATUS"
  if [ \$STATUS -eq 100 ]
  then
    echo "Restarting..."
  fi
done