summaryrefslogtreecommitdiffstats
path: root/roles/planet/files/run-planet
blob: d07f9047891947468c58a065c39291a3829789eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

if [ -z $1 ]; then
   echo "You must specify a planet name" >&2
   exit 1
fi

if [ -f /srv/planet/config/$1/config.ini ]; then
    /usr/local/bin/lock-wrapper "$1" "/usr/bin/venus-planet /srv/planet/config/$1/config.ini"
else
    echo "Cannot find /srv/planet/config/$1/config.ini - Exiting" >&2
    exit 1
fi