Created
August 26, 2013 12:45
-
-
Save themasch/6341064 to your computer and use it in GitHub Desktop.
gitlab init script for gentoo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/sbin/runscript | |
# GitLab 6.0 init script for Gentoo Linux | |
# see https://github.com/gitlabhq/gitlabhq/blob/master/doc/installation.md | |
GITLAB_BASE=/home/git/gitlabhq | |
GITLAB_USER=git | |
depend() { | |
need net | |
} | |
start() { | |
ebegin "Starting gitlab application server" | |
start-stop-daemon --start \ | |
--chdir "${GITLAB_BASE}" \ | |
--user "${GITLAB_USER}" \ | |
--pidfile "${GITLAB_BASE}/tmp/pids/appsrv" \ | |
--background \ | |
--exec bundle -- exec unicorn_rails -c "${GITLAB_BASE}/config/unicorn.rb" -E production | |
eend $? | |
ebegin "Starting gitlab sidekiq" | |
start-stop-daemon --start \ | |
--chdir "${GITLAB_BASE}" \ | |
--user "${GITLAB_USER}" \ | |
--pidfile "${GITLAB_BASE}/tmp/pids/sidekiq.pid" \ | |
--exec bundle -- exec rake sidekiq:start RAILS_ENV=production | |
eend $? | |
} | |
stop() { | |
ebegin "Stopping gitlab sidekiq" | |
start-stop-daemon --stop \ | |
--chdir "${GITLAB_BASE}" \ | |
--user "${GITLAB_USER}" \ | |
--pidfile "${GITLAB_BASE}/tmp/pids/sidekiq.pid" | |
eend $? | |
ebegin "Stopping gitlab application server" | |
start-stop-daemon --stop \ | |
--chdir "${GITLAB_BASE}" \ | |
--user "${GITLAB_USER}" \ | |
--pidfile "${GITLAB_BASE}/tmp/pids/appsrv" | |
eend $? | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment