Sha256: c7af795b9aaad7f5c97b9be30f00e1db3b7f1b9087cab40644c9ee23b53e7621

Contents?: true

Size: 1.08 KB

Versions: 26

Compression:

Stored size: 1.08 KB

Contents

#
# Cookbook Name:: apt
# Recipe:: cacher-ng
#
# Copyright 2008-2013, 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.
#

node.set['apt']['caching_server'] = true

package 'apt-cacher-ng' do
  action :install
end

directory node['apt']['cacher_dir'] do
  owner 'apt-cacher-ng'
  group 'apt-cacher-ng'
  mode 0755
end

template '/etc/apt-cacher-ng/acng.conf' do
  source 'acng.conf.erb'
  owner 'root'
  group 'root'
  mode 00644
  notifies :restart, 'service[apt-cacher-ng]', :immediately
end

service 'apt-cacher-ng' do
  supports :restart => true, :status => false
  action [:enable, :start]
end

Version data entries

26 entries across 26 versions & 2 rubygems

Version Path
madscience-0.0.28 cookbooks/apt/recipes/cacher-ng.rb
madscience-0.0.27 cookbooks/apt/recipes/cacher-ng.rb
madscience-0.0.26 cookbooks/apt/recipes/cacher-ng.rb
madscience-0.0.25 cookbooks/apt/recipes/cacher-ng.rb
madscience-0.0.24 cookbooks/apt/recipes/cacher-ng.rb
madscience-0.0.23 cookbooks/apt/recipes/cacher-ng.rb
madscience-0.0.21 cookbooks/apt/recipes/cacher-ng.rb
madscience-0.0.20 cookbooks/apt/recipes/cacher-ng.rb
madscience-0.0.19 cookbooks/apt/recipes/cacher-ng.rb
madscience-0.0.17 cookbooks/apt/recipes/cacher-ng.rb
madscience-0.0.16 cookbooks/apt/recipes/cacher-ng.rb
madscience-0.0.15 cookbooks/apt/recipes/cacher-ng.rb
madscience-0.0.14 cookbooks/apt/recipes/cacher-ng.rb
madscience-0.0.13 cookbooks/apt/recipes/cacher-ng.rb
madscience-0.0.11 cookbooks/apt/recipes/cacher-ng.rb
madscience-0.0.10 cookbooks/apt/recipes/cacher-ng.rb
madscience-0.0.9 cookbooks/apt/recipes/cacher-ng.rb
madscience-0.0.8 cookbooks/apt/recipes/cacher-ng.rb
madscience-0.0.7 cookbooks/apt/recipes/cacher-ng.rb
madscience-0.0.6 cookbooks/apt/recipes/cacher-ng.rb