77 lines
1.7 KiB
Bash
77 lines
1.7 KiB
Bash
#!/bin/bash
|
|
|
|
#Importing and running additional scripts placed in /config/init
|
|
if [ -d /config/init ]
|
|
then
|
|
if [ "$(ls -A /config/init)" ]
|
|
then
|
|
|
|
echo "Running additional startup scripts"
|
|
|
|
bash /config/init/*
|
|
|
|
else
|
|
|
|
echo "/config/init is empty - no additional startup scripts detected"
|
|
|
|
fi
|
|
else
|
|
|
|
echo "Directory /config/init not found. Recreating."
|
|
|
|
mkdir /config/init
|
|
|
|
fi
|
|
|
|
#Copying config.json to /config if it isn't there already, then linking it back into Cronicle
|
|
mv -n /opt/cronicle/conf/config.json /config/config.json
|
|
rm -rf /opt/cronicle/conf/config.json
|
|
ln -s /config/config.json /opt/cronicle/conf/config.json
|
|
|
|
#Detecting what mode Cronicle should be started in
|
|
if [ $MODE == "manager" ]
|
|
then
|
|
echo "Cronicle is running in 'manager' mode"
|
|
|
|
if [ ! -f /config/data/.setup_done ]
|
|
then
|
|
echo "Setup needed - running now"
|
|
|
|
/opt/cronicle/bin/control.sh setup
|
|
touch /opt/cronicle/data/.setup_done
|
|
|
|
mv -n /opt/cronicle/data /config/data
|
|
rm -rf /opt/cronicle/data
|
|
ln -s /config/data /opt/cronicle/data
|
|
|
|
exec node /opt/cronicle/lib/main.js --color 1
|
|
|
|
else
|
|
|
|
rm -rf /opt/cronicle/data
|
|
ln -s /config/data /opt/cronicle/data
|
|
|
|
exec node /opt/cronicle/lib/main.js --color 1
|
|
|
|
fi
|
|
|
|
elif [ $MODE == "worker" ]
|
|
then
|
|
|
|
echo "Cronicle is running in 'worker' mode"
|
|
|
|
if [ ! -f /config/config.json ]
|
|
then
|
|
|
|
echo "No config found. Copy config.json from the manager server and place it in the /config dir"
|
|
|
|
exit 0
|
|
else
|
|
|
|
exec node /opt/cronicle/lib/main.js --color 1
|
|
|
|
fi
|
|
|
|
else
|
|
echo "'$MODE' is not a recognised option for MODE. Accepted options are 'manager' and 'worker'"
|
|
fi |