Jerry Zhao 55eb597788 Run apt-get update before installing log related packages
ubuntu has an old apt cache upon a fresh installation, so some
package may not be in the cache yet because I noticed some dstat
installation failures due to no condidate found, so run apt-get update
first before installing packages.

Change-Id: I02cc51c45ab65a8eb9c915a87fad28aa4d844acb
2014-06-13 18:00:32 +00:00

82 lines
1.8 KiB
Ruby

#
# Cookbook Name:: rsyslog
# Recipe:: default
#
# Copyright 2009-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.
#
if platform?("ubuntu") && node['platform_version'].to_f == 8.04
apt_repository "hardy-rsyslog-ppa" do
uri "http://ppa.launchpad.net/a.bono/rsyslog/ubuntu"
distribution "hardy"
components ["main"]
keyserver "keyserver.ubuntu.com"
key "C0061A4A"
action :add
notifies :run, "execute[apt-get update]", :immediately
end
end
if platform?("ubuntu")
execute "apt-get-update" do
command "apt-get update"
ignore_failure true
action :run
end
end
package "rsyslog" do
action :install
end
service "rsyslog" do
service_name "rsyslogd" if platform?("arch")
supports :restart => true, :reload => true
action [:enable, :start]
end
if platform?("ubuntu")
cookbook_file "/etc/default/rsyslog" do
source "rsyslog.default"
owner "root"
group "root"
mode 0644
end
end
directory "/etc/rsyslog.d" do
owner "root"
group "root"
mode 0755
end
#template "/etc/rsyslog.conf" do
# source "rsyslog.conf.erb"
# owner "root"
# group "root"
# mode 0644
# notifies :restart, "service[rsyslog]"
#end
if platform?("ubuntu")
template "/etc/rsyslog.d/50-default.conf" do
source "50-default.conf.erb"
backup false
owner "root"
group "root"
mode 0644
end
end