Make apt_updates facts use /usr/bin/apt-get.
/usr/lib/update-notifier/apt-check is not available on all systems, but /usr/bin/apt-get is.
This commit is contained in:
parent
cc537070e8
commit
ebf9d9f6a6
5 changed files with 55 additions and 47 deletions
|
@ -1,16 +1,32 @@
|
||||||
apt_package_updates = nil
|
apt_package_updates = nil
|
||||||
Facter.add("apt_has_updates") do
|
Facter.add("apt_has_updates") do
|
||||||
confine :osfamily => 'Debian'
|
confine :osfamily => 'Debian'
|
||||||
if File.executable?("/usr/lib/update-notifier/apt-check")
|
if File.executable?("/usr/bin/apt-get")
|
||||||
apt_check_result = Facter::Util::Resolution.exec('/usr/lib/update-notifier/apt-check 2>&1')
|
apt_get_result = Facter::Util::Resolution.exec('/usr/bin/apt-get -s upgrade 2>&1')
|
||||||
if not apt_check_result.nil? and apt_check_result =~ /^\d+;\d+$/
|
if not apt_get_result.nil?
|
||||||
apt_package_updates = apt_check_result.split(';')
|
apt_package_updates = [[], []]
|
||||||
|
apt_get_result.each_line do |line|
|
||||||
|
if line =~ /^Inst\s/
|
||||||
|
package = line.gsub(/^Inst\s([^\s]+)\s.*/, '\1').strip
|
||||||
|
apt_package_updates[0].push(package)
|
||||||
|
security_matches = [
|
||||||
|
/ Debian[^\s]+-updates /,
|
||||||
|
/ Debian-Security:/,
|
||||||
|
/ Ubuntu[^\s]+-security /,
|
||||||
|
/ gNewSense[^\s]+-security /
|
||||||
|
]
|
||||||
|
re = Regexp.union(security_matches)
|
||||||
|
if line.match(re)
|
||||||
|
apt_package_updates[1].push(package)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
setcode do
|
setcode do
|
||||||
if not apt_package_updates.nil? and apt_package_updates.length == 2
|
if not apt_package_updates.nil? and apt_package_updates.length == 2
|
||||||
apt_package_updates != ['0', '0']
|
apt_package_updates != [[], []]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -18,11 +34,10 @@ end
|
||||||
Facter.add("apt_package_updates") do
|
Facter.add("apt_package_updates") do
|
||||||
confine :apt_has_updates => true
|
confine :apt_has_updates => true
|
||||||
setcode do
|
setcode do
|
||||||
packages = Facter::Util::Resolution.exec('/usr/lib/update-notifier/apt-check -p 2>&1').split("\n")
|
|
||||||
if Facter.version < '2.0.0'
|
if Facter.version < '2.0.0'
|
||||||
packages.join(',')
|
apt_package_updates[0].join(',')
|
||||||
else
|
else
|
||||||
packages
|
apt_package_updates[0]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -30,13 +45,13 @@ end
|
||||||
Facter.add("apt_updates") do
|
Facter.add("apt_updates") do
|
||||||
confine :apt_has_updates => true
|
confine :apt_has_updates => true
|
||||||
setcode do
|
setcode do
|
||||||
Integer(apt_package_updates[0])
|
Integer(apt_package_updates[0].length)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
Facter.add("apt_security_updates") do
|
Facter.add("apt_security_updates") do
|
||||||
confine :apt_has_updates => true
|
confine :apt_has_updates => true
|
||||||
setcode do
|
setcode do
|
||||||
Integer(apt_package_updates[1])
|
Integer(apt_package_updates[1].length)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -11,33 +11,11 @@ describe 'apt_has_updates fact' do
|
||||||
it { is_expected.to be_nil }
|
it { is_expected.to be_nil }
|
||||||
end
|
end
|
||||||
|
|
||||||
describe 'on Debian based distro missing update-notifier-common' do
|
describe 'on Debian based distro missing apt-get' do
|
||||||
before {
|
before {
|
||||||
Facter.fact(:osfamily).expects(:value).at_least(1).returns 'Debian'
|
Facter.fact(:osfamily).expects(:value).at_least(1).returns 'Debian'
|
||||||
File.stubs(:executable?) # Stub all other calls
|
File.stubs(:executable?) # Stub all other calls
|
||||||
File.expects(:executable?).with('/usr/lib/update-notifier/apt-check').returns false
|
File.expects(:executable?).with('/usr/bin/apt-get').returns false
|
||||||
}
|
|
||||||
it { is_expected.to be_nil }
|
|
||||||
end
|
|
||||||
|
|
||||||
describe 'on Debian based distro with broken packages' do
|
|
||||||
before {
|
|
||||||
Facter.fact(:osfamily).expects(:value).at_least(1).returns 'Debian'
|
|
||||||
File.stubs(:executable?) # Stub all other calls
|
|
||||||
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
|
|
||||||
File.expects(:executable?).with('/usr/lib/update-notifier/apt-check').returns true
|
|
||||||
Facter::Util::Resolution.expects(:exec).with('/usr/lib/update-notifier/apt-check 2>&1').returns "E: Error: BrokenCount > 0"
|
|
||||||
}
|
|
||||||
it { is_expected.to be_nil }
|
|
||||||
end
|
|
||||||
|
|
||||||
describe 'on Debian based distro with unknown error with semicolons' do
|
|
||||||
before {
|
|
||||||
Facter.fact(:osfamily).expects(:value).at_least(1).returns 'Debian'
|
|
||||||
File.stubs(:executable?) # Stub all other calls
|
|
||||||
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
|
|
||||||
File.expects(:executable?).with('/usr/lib/update-notifier/apt-check').returns true
|
|
||||||
Facter::Util::Resolution.expects(:exec).with('/usr/lib/update-notifier/apt-check 2>&1').returns "E: Unknown Error: 'This error contains something that could be parsed like 4;3' (10)"
|
|
||||||
}
|
}
|
||||||
it { is_expected.to be_nil }
|
it { is_expected.to be_nil }
|
||||||
end
|
end
|
||||||
|
@ -47,8 +25,12 @@ describe 'apt_has_updates fact' do
|
||||||
Facter.fact(:osfamily).expects(:value).at_least(1).returns 'Debian'
|
Facter.fact(:osfamily).expects(:value).at_least(1).returns 'Debian'
|
||||||
File.stubs(:executable?) # Stub all other calls
|
File.stubs(:executable?) # Stub all other calls
|
||||||
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
|
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
|
||||||
File.expects(:executable?).with('/usr/lib/update-notifier/apt-check').returns true
|
File.expects(:executable?).with('/usr/bin/apt-get').returns true
|
||||||
Facter::Util::Resolution.expects(:exec).with('/usr/lib/update-notifier/apt-check 2>&1').returns "4;3"
|
Facter::Util::Resolution.expects(:exec).with('/usr/bin/apt-get -s upgrade 2>&1').returns ""+
|
||||||
|
"Inst tzdata [2015f-0+deb8u1] (2015g-0+deb8u1 Debian:stable-updates [all])\n"+
|
||||||
|
"Conf tzdata (2015g-0+deb8u1 Debian:stable-updates [all])\n"+
|
||||||
|
"Inst unhide.rb [13-1.1] (22-2~bpo8+1 Debian Backports:jessie-backports [all])\n"+
|
||||||
|
"Conf unhide.rb (22-2~bpo8+1 Debian Backports:jessie-backports [all])\n"
|
||||||
}
|
}
|
||||||
it { is_expected.to be true }
|
it { is_expected.to be true }
|
||||||
end
|
end
|
||||||
|
|
|
@ -16,15 +16,18 @@ describe 'apt_package_updates fact' do
|
||||||
Facter.fact(:osfamily).stubs(:value).returns 'Debian'
|
Facter.fact(:osfamily).stubs(:value).returns 'Debian'
|
||||||
File.stubs(:executable?) # Stub all other calls
|
File.stubs(:executable?) # Stub all other calls
|
||||||
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
|
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
|
||||||
File.expects(:executable?).with('/usr/lib/update-notifier/apt-check').returns true
|
File.expects(:executable?).with('/usr/bin/apt-get').returns true
|
||||||
Facter::Util::Resolution.expects(:exec).with('/usr/lib/update-notifier/apt-check 2>&1').returns "1;2"
|
Facter::Util::Resolution.expects(:exec).with('/usr/bin/apt-get -s upgrade 2>&1').returns ""+
|
||||||
Facter::Util::Resolution.expects(:exec).with('/usr/lib/update-notifier/apt-check -p 2>&1').returns "puppet-common\nlinux-generic\nlinux-image-generic"
|
"Inst tzdata [2015f-0+deb8u1] (2015g-0+deb8u1 Debian:stable-updates [all])\n"+
|
||||||
|
"Conf tzdata (2015g-0+deb8u1 Debian:stable-updates [all])\n"+
|
||||||
|
"Inst unhide.rb [13-1.1] (22-2~bpo8+1 Debian Backports:jessie-backports [all])\n"+
|
||||||
|
"Conf unhide.rb (22-2~bpo8+1 Debian Backports:jessie-backports [all])\n"
|
||||||
}
|
}
|
||||||
it {
|
it {
|
||||||
if Facter.version < '2.0.0'
|
if Facter.version < '2.0.0'
|
||||||
is_expected.to eq('puppet-common,linux-generic,linux-image-generic')
|
is_expected.to eq('tzdata,unhide.rb')
|
||||||
else
|
else
|
||||||
is_expected.to eq(['puppet-common', 'linux-generic', 'linux-image-generic'])
|
is_expected.to eq(['tzdata','unhide.rb'])
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
|
@ -16,10 +16,14 @@ describe 'apt_security_updates fact' do
|
||||||
Facter.fact(:osfamily).stubs(:value).returns 'Debian'
|
Facter.fact(:osfamily).stubs(:value).returns 'Debian'
|
||||||
File.stubs(:executable?) # Stub all other calls
|
File.stubs(:executable?) # Stub all other calls
|
||||||
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
|
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
|
||||||
File.expects(:executable?).with('/usr/lib/update-notifier/apt-check').returns true
|
File.expects(:executable?).with('/usr/bin/apt-get').returns true
|
||||||
Facter::Util::Resolution.expects(:exec).with('/usr/lib/update-notifier/apt-check 2>&1').returns "14;7"
|
Facter::Util::Resolution.expects(:exec).with('/usr/bin/apt-get -s upgrade 2>&1').returns ""+
|
||||||
|
"Inst tzdata [2015f-0+deb8u1] (2015g-0+deb8u1 Debian:stable-updates [all])\n"+
|
||||||
|
"Conf tzdata (2015g-0+deb8u1 Debian:stable-updates [all])\n"+
|
||||||
|
"Inst unhide.rb [13-1.1] (22-2~bpo8+1 Debian Backports:jessie-backports [all])\n"+
|
||||||
|
"Conf unhide.rb (22-2~bpo8+1 Debian Backports:jessie-backports [all])\n"
|
||||||
}
|
}
|
||||||
it { is_expected.to eq(7) }
|
it { is_expected.to eq(1) }
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -16,10 +16,14 @@ describe 'apt_updates fact' do
|
||||||
Facter.fact(:osfamily).stubs(:value).returns 'Debian'
|
Facter.fact(:osfamily).stubs(:value).returns 'Debian'
|
||||||
File.stubs(:executable?) # Stub all other calls
|
File.stubs(:executable?) # Stub all other calls
|
||||||
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
|
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
|
||||||
File.expects(:executable?).with('/usr/lib/update-notifier/apt-check').returns true
|
File.expects(:executable?).with('/usr/bin/apt-get').returns true
|
||||||
Facter::Util::Resolution.expects(:exec).with('/usr/lib/update-notifier/apt-check 2>&1').returns "14;7"
|
Facter::Util::Resolution.expects(:exec).with('/usr/bin/apt-get -s upgrade 2>&1').returns ""+
|
||||||
|
"Inst tzdata [2015f-0+deb8u1] (2015g-0+deb8u1 Debian:stable-updates [all])\n"+
|
||||||
|
"Conf tzdata (2015g-0+deb8u1 Debian:stable-updates [all])\n"+
|
||||||
|
"Inst unhide.rb [13-1.1] (22-2~bpo8+1 Debian Backports:jessie-backports [all])\n"+
|
||||||
|
"Conf unhide.rb (22-2~bpo8+1 Debian Backports:jessie-backports [all])\n"
|
||||||
}
|
}
|
||||||
it { is_expected.to eq(14) }
|
it { is_expected.to eq(2) }
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue