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.2 init script for Gentoo Linux | |
GITLAB_BASE=/home/git/gitlab | |
GITLAB_USER=git | |
depend() { | |
need net redis | |
} |
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 Runner init script for Gentoo Linux | |
GITLAB_RUNNER_BASE=/home/runner/gitlab-runners/gitlab-ci-runner | |
GITLAB_RUNNER_USER=runner | |
depend() { | |
need net | |
} |
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-CI 4.3 init script for Gentoo Linux | |
GITLAB_BASE=/home/gitlab_ci/gitlab-ci | |
GITLAB_USER=gitlab_ci | |
depend() { | |
need net redis | |
} |
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 | |
# Copyright 2015 Nicolas Heine | |
depend() { | |
after sshd | |
need net | |
need localmount | |
} | |
start() { |