Skip to content

Commit 995b79d

Browse files
committed
(puppetlabs#9440) exec resource: set path param to path fact
1 parent fc698a2 commit 995b79d

File tree

4 files changed

+5
-40
lines changed

4 files changed

+5
-40
lines changed

lib/puppet/type/exec.rb

+3-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,9 @@ def sync
223223
newparam(:path) do
224224
desc "The search path used for command execution.
225225
Commands must be fully qualified if no path is specified. Paths
226-
can be specified as an array or as a '#{File::PATH_SEPARATOR}' separated list."
226+
can be specified as an array or as a '#{File::PATH_SEPARATOR}' separated list. Defaults to the `path` fact."
227+
228+
defaultto Puppet.runtime[:facter].value('path')
227229

228230
# Support both arrays and colon-separated fields.
229231
def value=(*values)

spec/integration/application/agent_spec.rb

-25
Original file line numberDiff line numberDiff line change
@@ -649,31 +649,6 @@ def with_another_agent_running(&block)
649649
)).to_stdout
650650
.and output(/No more routes to fileserver/).to_stderr
651651
end
652-
653-
it 'preserves the old cached catalog if validation fails with the old one' do
654-
catalog_handler = -> (req, res) {
655-
catalog = compile_to_catalog(<<-MANIFEST, node)
656-
exec { 'unqualified_command': }
657-
MANIFEST
658-
659-
res.body = formatter.render(catalog)
660-
res['Content-Type'] = formatter.mime
661-
}
662-
663-
server.start_server(mounts: {catalog: catalog_handler}) do |port|
664-
Puppet[:serverport] = port
665-
expect {
666-
agent.command_line.args << '--test'
667-
agent.run
668-
}.to exit_with(1)
669-
.and output(%r{Retrieving plugin}).to_stdout
670-
.and output(%r{Validation of Exec\[unqualified_command\] failed: 'unqualified_command' is not qualified and no path was specified}).to_stderr
671-
end
672-
673-
# cached catalog should not be updated
674-
cached_catalog = "#{File.join(Puppet[:client_datadir], 'catalog', Puppet[:certname])}.json"
675-
expect(File).to_not be_exist(cached_catalog)
676-
end
677652
end
678653

679654
context "reporting" do

spec/unit/provider/exec_spec.rb

-14
Original file line numberDiff line numberDiff line change
@@ -73,20 +73,6 @@ def echo_from_ruby_exit_1(message)
7373
end
7474

7575
context "when validating the command" do
76-
it "redacts the arguments if the command is relative" do
77-
expect {
78-
apply_compiled_manifest(<<-MANIFEST)
79-
exec { 'echo':
80-
command => Sensitive.new('echo #{supersecret}')
81-
}
82-
MANIFEST
83-
}.to raise_error do |err|
84-
expect(err).to be_a(Puppet::Error)
85-
expect(err.message).to match(/'echo' is not qualified and no path was specified. Please qualify the command or specify a path./)
86-
expect(err.message).to_not match(/#{supersecret}/)
87-
end
88-
end
89-
9076
it "redacts the arguments if the command is a directory" do
9177
dir = tmpdir('exec')
9278
apply_compiled_manifest(<<-MANIFEST)

spec/unit/type/exec_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -910,6 +910,8 @@ def instance(path)
910910
let :abs do make_absolute('/bin/echo') end
911911
let :path do make_absolute('/bin') end
912912

913+
allow(Facter).to receive(:value).with('path').and_return('/usr/bin:/bin')
914+
913915
it "should fail with relative command and no path" do
914916
expect { type.new(:command => rel) }.
915917
to raise_error Puppet::Error, /no path was specified/

0 commit comments

Comments
 (0)