summaryrefslogtreecommitdiff
path: root/git-mirror-gitlab-ce
diff options
context:
space:
mode:
Diffstat (limited to 'git-mirror-gitlab-ce')
-rwxr-xr-xgit-mirror-gitlab-ce14
1 files changed, 12 insertions, 2 deletions
diff --git a/git-mirror-gitlab-ce b/git-mirror-gitlab-ce
index 6502618..80f0b81 100755
--- a/git-mirror-gitlab-ce
+++ b/git-mirror-gitlab-ce
@@ -101,7 +101,7 @@ class GitLabCE < GitMirrorBackend
if self.info().nil?
# create
- libremessages('msg2', 'Creating repo %s', @project_id)
+ libremessages('msg2', 'Creating repo')
namespace, path = @project_id.split('/', 2)
namespace_id = namespace_path2id(namespace)
@@ -122,7 +122,17 @@ class GitLabCE < GitMirrorBackend
self.info = JSON::parse(res.body)
else
# update
- libremessages('msg2', 'Updating repo %s metadata', @project_id)
+ mismatch = false
+ map.each do |key,val|
+ if self.info[key].to_s != val.to_s
+ mismatch = true
+ end
+ end
+ unless mismatch
+ libremessages('msg2', 'General metadata ok')
+ return nil
+ end
+ libremessages('msg2', 'Updating general metadata')
req = Net::HTTP::Put.new(@gl.config['apiurl'] + "projects/" + CGI::escape(self.info["id"].to_s))
req.add_field("PRIVATE-TOKEN", @gl.config['apikey'])
req.add_field("Content-Type", "application/json")