chef/cookbooks/updater/recipes/default.rb
#
# Cookbook Name:: updater
# Recipe:: default
#
# Copyright 2013-2014, SUSE LINUX Products GmbH
#
# 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 !node[:updater].key?(:one_shot_run) || !node[:updater][:one_shot_run]
node[:updater][:one_shot_run] = true
if node[:platform_family] == "suse"
zypper_params = ["--non-interactive"]
if not node[:updater][:zypper][:gpg_checks]
zypper_params << "--no-gpg-checks"
end
case node[:updater][:zypper][:method]
when "patch"
if node[:updater][:zypper][:patch][:include_reboot_patches]
zypper_params << "--non-interactive-include-reboot-patches"
end
end
zypper_command = "zypper #{zypper_params.join(' ')} #{node[:updater][:zypper][:method]}"
if node[:updater][:zypper][:licenses_agree]
zypper_command += " --auto-agree-with-licenses"
end
execute "refresh PTF repository" do
command "zypper --non-interactive --gpg-auto-import-keys refresh -fr PTF"
ignore_failure true
end
# Butt-ugly, enhance Chef::Provider::Package::Zypper later on...
ruby_block "running \"#{zypper_command}\"" do
block do
count = 0
while true do
count += 1
%x{#{zypper_command}}
exitstatus = $?.exitstatus
Chef::Log.info("\"#{zypper_command}\" exited with #{exitstatus}.")
case exitstatus
when 0, 100, 101, 104, 105
# ZYPPER_EXIT_OK
# ZYPPER_EXIT_INF_SEC_UPDATE_NEEDED
# ZYPPER_EXIT_INF_UPDATE_NEEDED
# ZYPPER_EXIT_INF_CAP_NOT_FOUND
# ZYPPER_EXIT_ON_SIGNAL
break
when 102
# ZYPPER_EXIT_INF_REBOOT_NEEDED
if node[:updater][:do_reboot]
Chef::Log.info("Will reboot node at the end of chef run.")
node.run_state[:reboot] = true
node[:updater][:need_reboot] = false
else
Chef::Log.info("Marking node as needing a reboot.")
node[:updater][:need_reboot] = true
node[:updater][:need_reboot_time] = Time.now.to_i
end
break
when 103
# ZYPPER_EXIT_INF_RESTART_NEEDED
if count >= 5
message = "Ran \"#{zypper_command}\" more than five times, and it still requires more runs."
Chef::Log.fatal(message)
node.save # node is always dirty due to one_shot_run
raise message
end
next
else
message = "\"#{zypper_command}\" returned #{exitstatus}"
Chef::Log.fatal(message)
node.save # node is always dirty due to one_shot_run
raise message
end # case
end # while
end # block
end # ruby_block
end # platform_family suse block
# handle case where there is a reboot needed from a previous run
if node[:updater][:do_reboot] and node[:updater][:need_reboot]
# only reboot if there was no boot since that time
if node[:uptime_seconds] > Time.now.to_i - node[:updater][:need_reboot_time]
Chef::Log.info("Will reboot node at the end of chef run.")
node.run_state[:reboot] = true
end
node[:updater][:need_reboot] = false
end
node.save # node is always dirty due to one_shot_run
end # if