Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Example Startup Scripts #12

Open
davglass opened this issue Jan 15, 2015 · 0 comments
Open

Example Startup Scripts #12

davglass opened this issue Jan 15, 2015 · 0 comments

Comments

@davglass
Copy link
Owner

Here is the script that I use on my mirror machines, maybe we can look into providing proper startup scripts and checks. Maybe use monit to monitor the process and restart it when needed?

#!/bin/bash

if [ "$SUDO_USER" = "" ]; then
    echo "You're not allowed to execute this script. Please run this with sudo.";
    exit 1;
fi

pid="/tmp/registry-static.pid"

if [ -f $pid ]; then
    PID=`cat $pid`
    echo "Found a running process: $PID. Killing it first.."
    kill $PID;
    rm $pid
fi

echo "Launching registry-static in the background..."
cd /tmp/
nohup /bin/registry-static &
echo "Launched"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant