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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
fbe03c50
Commit
fbe03c50
authored
Nov 25, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improved namespace activation task
parent
be942d74
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
0 deletions
+27
-0
lib/tasks/gitlab/activate_namespaces.rake
lib/tasks/gitlab/activate_namespaces.rake
+27
-0
No files found.
lib/tasks/gitlab/activate_namespaces.rake
View file @
fbe03c50
...
...
@@ -13,5 +13,32 @@ namespace :gitlab do
end
end
end
Group
.
find_each
(
batch_size:
500
)
do
|
group
|
if
group
.
ensure_dir_exist
print
'.'
.
green
else
print
'F'
.
red
end
end
git_path
=
Gitlab
.
config
.
git_base_path
Project
.
where
(
'namespace_id IS NOT NULL'
).
find_each
(
batch_size:
500
)
do
|
project
|
next
unless
project
.
group
group
=
project
.
group
next
if
File
.
exists?
(
File
.
join
(
git_path
,
project
.
path_with_namespace
))
next
unless
File
.
exists?
(
File
.
join
(
git_path
,
project
.
path
))
begin
Gitlab
::
ProjectMover
.
new
(
project
,
''
,
group
.
path
).
execute
print
'.'
.
green
rescue
print
'F'
.
red
end
end
end
end
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