Sha256: 7950b602b140170ad8dd9438f43947f15f256a743b7f7519f2f7fa16426d9f9f
Contents?: true
Size: 1.34 KB
Versions: 6
Compression:
Stored size: 1.34 KB
Contents
# # Cookbook Name:: yum # Resource:: repository # # Copyright 2011, Opscode, Inc. # # 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. # actions :add, :remove, :update #name of the repo, used for .repo filename attribute :repo_name, :kind_of => String, :name_attribute => true attribute :description, :kind_of => String #long description attribute :url, :kind_of => String, :default => "" attribute :mirrorlist, :default => false attribute :key, :kind_of => String, :default => nil attribute :enabled, :default => 1 attribute :type, :kind_of => String, :default => nil attribute :failovermethod, :kind_of => String, :default => nil attribute :bootstrapurl, :kind_of => String, :default => nil attribute :make_cache, :kind_of => [TrueClass, FalseClass], :default => true attribute :includepkgs, :kind_of => String, :default => nil def initialize(*args) super @action = :add end
Version data entries
6 entries across 6 versions & 1 rubygems