(#18393) AIX 5.3 doesn't support diff -u

Prior to this commit, the diffargs where always `-u`, which is not
supported on AIX 5.3, an official PE supported platform. This commit
adds a utility method to abstract away the logic for what the default
diffargs should be and then calls that for the default value.
This commit is contained in:
Jeff Weiss 2013-05-08 15:41:33 -07:00
Родитель 8c0e1b385a
Коммит bb86ff63e1
2 изменённых файлов: 53 добавлений и 1 удалений

Просмотреть файл

@ -3,6 +3,14 @@
module Puppet
def self.default_diffargs
if (Facter.value(:kernel) == "AIX" && Facter.value(:kernelmajversion) == "5300")
""
else
"-u"
end
end
############################################################################################
# NOTE: For information about the available values for the ":type" property of settings,
# see the docs for Settings.define_settings
@ -170,7 +178,7 @@ module Puppet
"this provides the default environment for nodes we know nothing about."
},
:diff_args => {
:default => "-u",
:default => default_diffargs,
:desc => "Which arguments to pass to the diff command when printing differences between\n" +
"files. The command to use can be chosen with the `diff` setting.",
},

Просмотреть файл

@ -0,0 +1,44 @@
require 'spec_helper'
require 'puppet/settings'
describe "Defaults" do
describe ".default_diffargs" do
describe "on AIX" do
before(:each) do
Facter.stubs(:value).with(:kernel).returns("AIX")
end
describe "on 5.3" do
before(:each) do
Facter.stubs(:value).with(:kernelmajversion).returns("5300")
end
it "should be empty" do
Puppet.default_diffargs.should == ""
end
end
[ "",
nil,
"6300",
"7300",
].each do |kernel_version|
describe "on kernel version #{kernel_version.inspect}" do
before(:each) do
Facter.stubs(:value).with(:kernelmajversion).returns(kernel_version)
end
it "should be '-u'" do
Puppet.default_diffargs.should == "-u"
end
end
end
end
describe "on everything else" do
before(:each) do
Facter.stubs(:value).with(:kernel).returns("NOT_AIX")
end
it "should be '-u'" do
Puppet.default_diffargs.should == "-u"
end
end
end
end