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
3a4aff69
Commit
3a4aff69
authored
Jun 29, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #973 from denispeplin/master
/home/git/repositories is hardcoded in rake task, replace it
parents
335f9d64
4a40f650
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lib/tasks/gitlab/status.rake
lib/tasks/gitlab/status.rake
+2
-2
No files found.
lib/tasks/gitlab/status.rake
View file @
3a4aff69
...
...
@@ -21,7 +21,7 @@ namespace :gitlab do
end
GIT_HOST
=
YAML
.
load_file
(
"
#{
Rails
.
root
}
/config/gitlab.yml"
)[
"git_host"
]
print
"
/home/git/repositories/
............"
print
"
#{
GIT_HOST
[
'base_path'
]
}
............"
if
File
.
exists?
(
GIT_HOST
[
'base_path'
])
puts
"exists"
.
green
else
...
...
@@ -29,7 +29,7 @@ namespace :gitlab do
return
end
print
"
/home/git/repositories/
is writable?............"
print
"
#{
GIT_HOST
[
'base_path'
]
}
is writable?............"
if
File
.
stat
(
GIT_HOST
[
'base_path'
]).
writable?
puts
"YES"
.
green
else
...
...
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