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
Léo-Paul Géneau
gitlab-ce
Commits
1dda34f3
Commit
1dda34f3
authored
Aug 02, 2013
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete duplicate keys in migrate_keys task
parent
b55e22e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
lib/tasks/migrate/migrate_keys.rake
lib/tasks/migrate/migrate_keys.rake
+5
-0
No files found.
lib/tasks/migrate/migrate_keys.rake
View file @
1dda34f3
desc
"GITLAB | Migrate SSH Keys"
task
migrate_keys: :environment
do
puts
"This will add fingerprint to ssh keys in db"
puts
"If you have duplicate keys https://github.com/gitlabhq/gitlabhq/issues/4453 all but the first will be deleted"
.
yellow
ask_to_continue
Key
.
find_each
(
batch_size:
20
)
do
|
key
|
if
key
.
valid?
&&
key
.
save
print
'.'
elsif
key
.
fingerprint
.
present?
puts
"
\n
Deleting
#{
key
.
inspect
}
"
.
yellow
key
.
destroy
else
print
'F'
end
end
print
"
\n
"
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