Sha256: e0424243f0476c7177ca549f7f6e226c024b8767d63e8f6b1aa2c66eb256999e

Contents?: true

Size: 1.84 KB

Versions: 1

Compression:

Stored size: 1.84 KB

Contents

#
# Cookbook Name:: apt
# Provider:: preference
#
# Copyright 2010-2011, Chef Software, 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.
#

use_inline_resources if defined?(use_inline_resources)

def whyrun_supported?
  true
end

# Build preferences.d file contents
def build_pref(package_name, pin, pin_priority)
  "Package: #{package_name}\nPin: #{pin}\nPin-Priority: #{pin_priority}\n"
end

action :add do
  preference = build_pref(
    new_resource.glob || new_resource.package_name,
    new_resource.pin,
    new_resource.pin_priority
    )

  directory '/etc/apt/preferences.d' do
    owner 'root'
    group 'root'
    mode 00755
    recursive true
    action :create
  end

  file "/etc/apt/preferences.d/#{new_resource.name}" do
    action :delete
    if ::File.exist?("/etc/apt/preferences.d/#{new_resource.name}")
      Chef::Log.warn "Replacing #{new_resource.name} with #{new_resource.name}.pref in /etc/apt/preferences.d/"
    end
  end

  file "/etc/apt/preferences.d/#{new_resource.name}.pref" do
    owner 'root'
    group 'root'
    mode 00644
    content preference
    action :create
  end
end

action :remove do
  if ::File.exist?("/etc/apt/preferences.d/#{new_resource.name}.pref")
    Chef::Log.info "Un-pinning #{new_resource.name} from /etc/apt/preferences.d/"
    file "/etc/apt/preferences.d/#{new_resource.name}.pref" do
      action :delete
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
madscience-0.0.29 cookbooks/apt/providers/preference.rb