BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
52d7813f
Commit
52d7813f
authored
Sep 15, 2015
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve repo cleanup task
Clean up more than just global (legacy) repos. Also, instead of deleting, just rename.
parent
3315e89d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
34 deletions
+11
-34
cleanup.rake
lib/tasks/gitlab/cleanup.rake
+11
-34
No files found.
lib/tasks/gitlab/cleanup.rake
View file @
52d7813f
...
...
@@ -46,43 +46,20 @@ namespace :gitlab do
desc
"GitLab | Cleanup | Clean repositories"
task
repos: :environment
do
warn_user_is_not_gitlab
remove_flag
=
ENV
[
'REMOVE'
]
git_base_path
=
Gitlab
.
config
.
gitlab_shell
.
repos_path
all_dirs
=
Dir
.
glob
(
git_base_path
+
'/*'
)
global_projects
=
Project
.
in_namespace
(
nil
).
pluck
(
:path
)
puts
git_base_path
.
yellow
puts
"Looking for global repos to remove... "
# skip non git repo
all_dirs
.
select!
do
|
dir
|
dir
=~
/.git$/
end
# skip existing repos
all_dirs
.
reject!
do
|
dir
|
repo_name
=
File
.
basename
dir
path
=
repo_name
.
gsub
(
/\.git$/
,
""
)
global_projects
.
include?
(
path
)
end
all_dirs
.
each
do
|
dir_path
|
if
remove_flag
if
FileUtils
.
rm_rf
dir_path
puts
"Removed...
#{
dir_path
}
"
.
red
else
puts
"Cannot remove
#{
dir_path
}
"
.
red
end
else
puts
"Can be removed:
#{
dir_path
}
"
.
red
move_suffix
=
"+orphaned+
#{
Time
.
now
.
to_i
}
"
repo_root
=
Gitlab
.
config
.
gitlab_shell
.
repos_path
# Look for global repos (legacy, depth 1) and normal repos (depth 2)
IO
.
popen
(
%W(find
#{
repo_root
}
-mindepth 1 -maxdepth 2 -name *.git)
)
do
|
find
|
find
.
each_line
do
|
path
|
path
.
chomp!
repo_with_namespace
=
path
.
sub
(
repo_root
+
'/'
,
''
).
chomp
(
'.git'
).
chomp
(
'.wiki'
)
next
if
Project
.
find_with_namespace
(
repo_with_namespace
)
new_path
=
path
+
move_suffix
puts
path
.
inspect
+
' -> '
+
new_path
.
inspect
File
.
rename
(
path
,
new_path
)
end
end
unless
remove_flag
puts
"To cleanup this directories run this command with REMOVE=true"
.
yellow
end
end
desc
"GitLab | Cleanup | Block users that have been removed in LDAP"
...
...
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