Welcome to mirror list, hosted at ThFree Co, Russian Federation.

registry.rb « backup « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 67fe023108726beb9e7f29886d3f68aa95d52e4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'backup/files'

module Backup
  class Registry < Files
    def initialize
      super('registry', Settings.registry.path)
    end

    def create_files_dir
      Dir.mkdir(app_files_dir, 0700)
    end
  end
end