Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
494d15cf
Commit
494d15cf
authored
Sep 08, 2014
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7258 from presto53/fix_init_scripts_interpreter
change bash to sh in web, background_jobs scripts
parents
b712ded1
7dd0646e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
14 deletions
+14
-14
bin/background_jobs
bin/background_jobs
+9
-9
bin/web
bin/web
+5
-5
No files found.
bin/background_jobs
View file @
494d15cf
#!/
usr/bin/env ba
sh
#!/
bin/
sh
cd
$(
dirname
$0
)
/..
app_root
=
$(
pwd
)
...
...
@@ -6,22 +6,22 @@ sidekiq_pidfile="$app_root/tmp/pids/sidekiq.pid"
sidekiq_logfile
=
"
$app_root
/log/sidekiq.log"
gitlab_user
=
$(
ls
-l
config.ru |
awk
'{print $3}'
)
function
warn
warn
()
{
echo
"
$@
"
1>&2
}
function
stop
stop
()
{
bundle
exec
sidekiqctl stop
$sidekiq_pidfile
>>
$sidekiq_logfile
2>&1
}
function
killall
killall
()
{
pkill
-u
$gitlab_user
-f
'sidekiq [0-9]'
}
function
restart
restart
()
{
if
[
-f
$sidekiq_pidfile
]
;
then
stop
...
...
@@ -30,20 +30,20 @@ function restart
start_sidekiq
-d
-L
$sidekiq_logfile
}
function
start_no_deamonize
start_no_deamonize
()
{
start_sidekiq
}
function
start_sidekiq
start_sidekiq
()
{
bundle
exec
sidekiq
-q
post_receive
-q
system_hook
-q
project_web_hook
-q
gitlab_shell
-q
common
-q
default
-e
$RAILS_ENV
-P
$sidekiq_pidfile
$@
>>
$sidekiq_logfile
2>&1
}
function
load_ok
load_ok
()
{
sidekiq_pid
=
$(
cat
$sidekiq_pidfile
)
if
[
[
-z
$sidekiq_pid
]
]
;
then
if
[
-z
$sidekiq_pid
]
;
then
warn
"Could not find a PID in
$sidekiq_pidfile
"
exit
0
fi
...
...
bin/web
View file @
494d15cf
#!/
usr/bin/env ba
sh
#!/
bin/
sh
cd
$(
dirname
$0
)
/..
app_root
=
$(
pwd
)
...
...
@@ -6,7 +6,7 @@ app_root=$(pwd)
unicorn_pidfile
=
"
$app_root
/tmp/pids/unicorn.pid"
unicorn_config
=
"
$app_root
/config/unicorn.rb"
function
get_unicorn_pid
get_unicorn_pid
()
{
local
pid
=
$(
cat
$unicorn_pidfile
)
if
[
-z
$pid
]
;
then
...
...
@@ -16,18 +16,18 @@ function get_unicorn_pid
unicorn_pid
=
$pid
}
function
start
start
()
{
bundle
exec
unicorn_rails
-D
-c
$unicorn_config
-E
$RAILS_ENV
}
function
stop
stop
()
{
get_unicorn_pid
kill
-QUIT
$unicorn_pid
}
function
reload
reload
()
{
get_unicorn_pid
kill
-USR2
$unicorn_pid
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment