summaryrefslogtreecommitdiff
path: root/lib/chef/resource/zypper_repository.rb
blob: 05856cc9bc6c339944dab804f7eaf7b4b58039a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#
# Author:: Tim Smith (<tsmith@chef.io>)
# Copyright:: Copyright (c) Chef Software Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

require_relative "../resource"

class Chef
  class Resource
    class ZypperRepository < Chef::Resource
      unified_mode true

      provides(:zypper_repository) { true }
      provides(:zypper_repo) { true }

      description "Use the **zypper_repository** resource to create Zypper package repositories on SUSE Enterprise Linux and openSUSE systems. This resource maintains full compatibility with the **zypper_repository** resource in the existing **zypper** cookbook."
      introduced "13.3"
      examples <<~DOC
        **Add the Apache repo on openSUSE Leap 15**:

        ``` ruby
        zypper_repository 'apache' do
          baseurl 'http://download.opensuse.org/repositories/Apache'
          path '/openSUSE_Leap_15.0'
            type 'rpm-md'
          priority '100'
        end
        ```
      DOC

      property :repo_name, String,
        regex: [%r{^[^/]+$}],
        description: "An optional property to set the repository name if it differs from the resource block's name.",
        validation_message: "repo_name property cannot contain a forward slash `/`",
        name_property: true

      property :description, String,
        description: "The description of the repository that will be shown by the `zypper repos` command."

      property :type, String,
        description: "Specifies the repository type.",
        default: "NONE"

      property :enabled, [TrueClass, FalseClass],
        description: "Determines whether or not the repository should be enabled.",
        default: true

      property :autorefresh, [TrueClass, FalseClass],
        description: "Determines whether or not the repository should be refreshed automatically.",
        default: true

      property :gpgcheck, [TrueClass, FalseClass],
        description: "Determines whether or not to perform a GPG signature check on the repository.",
        default: true

      property :gpgkey, String,
        description: "The location of the repository key to be imported."

      property :baseurl, String,
        description: "The base URL for the Zypper repository, such as `http://download.opensuse.org`."

      property :mirrorlist, String,
        description: "The URL of the mirror list that will be used."

      property :path, String,
        description: "The relative path from the repository's base URL."

      property :priority, Integer,
        description: "Determines the priority of the Zypper repository.",
        default: 99

      property :keeppackages, [TrueClass, FalseClass],
        description: "Determines whether or not packages should be saved.",
        default: false

      property :mode, [String, Integer],
        description: "The file mode of the repository file.",
        default: "0644"

      property :refresh_cache, [TrueClass, FalseClass],
        description: "Determines whether or not the package cache should be refreshed.",
        default: true

      property :source, String,
        description: "The name of the template for the repository file. Only necessary if you're not using the built in template."

      property :cookbook, String,
        description: "The cookbook to source the repository template file from. Only necessary if you're not using the built in template.",
        desired_state: false

      property :gpgautoimportkeys, [TrueClass, FalseClass],
        description: "Automatically import the specified key when setting up the repository.",
        default: true

      default_action :create
      allowed_actions :create, :remove, :add, :refresh

      # provide compatibility with the zypper cookbook
      alias_method :key, :gpgkey
      alias_method :uri, :baseurl
    end
  end
end