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

packages.rb « backup « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9384e007162bf58e6c1d64a9e1fa053dd4bdff3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module Backup
  class Packages < Backup::Files
    def initialize(progress)
      super(progress, 'packages', Settings.packages.storage_path, excludes: ['tmp'])
    end

    override :human_name
    def human_name
      _('packages')
    end
  end
end