Sha256: 41dcec4ee69e149c30f0d2960a96b713c570e4532581178d76ecab7c827650a0

Contents?: true

Size: 794 Bytes

Versions: 20

Compression:

Stored size: 794 Bytes

Contents

# frozen_string_literal: true
Puppet::Type.type(:exec).provide :shell, :parent => :posix do
  include Puppet::Util::Execution

  confine :feature => :posix

  desc <<-EOT
    Passes the provided command through `/bin/sh`; only available on
    POSIX systems. This allows the use of shell globbing and built-ins, and
    does not require that the path to a command be fully-qualified. Although
    this can be more convenient than the `posix` provider, it also means that
    you need to be more careful with escaping; as ever, with great power comes
    etc. etc.

    This provider closely resembles the behavior of the `exec` type
    in Puppet 0.25.x.
  EOT

  def run(command, check = false)
    super(['/bin/sh', '-c', command], check)
  end

  def validatecmd(command)
    true
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
puppet-8.3.0 lib/puppet/provider/exec/shell.rb
puppet-8.3.0-x86-mingw32 lib/puppet/provider/exec/shell.rb
puppet-8.3.0-x64-mingw32 lib/puppet/provider/exec/shell.rb
puppet-8.3.0-universal-darwin lib/puppet/provider/exec/shell.rb
puppet-8.3.1 lib/puppet/provider/exec/shell.rb
puppet-8.3.1-x86-mingw32 lib/puppet/provider/exec/shell.rb
puppet-8.3.1-x64-mingw32 lib/puppet/provider/exec/shell.rb
puppet-8.3.1-universal-darwin lib/puppet/provider/exec/shell.rb
puppet-8.2.0 lib/puppet/provider/exec/shell.rb
puppet-8.2.0-x86-mingw32 lib/puppet/provider/exec/shell.rb
puppet-8.2.0-x64-mingw32 lib/puppet/provider/exec/shell.rb
puppet-8.2.0-universal-darwin lib/puppet/provider/exec/shell.rb
puppet-8.1.0 lib/puppet/provider/exec/shell.rb
puppet-8.1.0-x86-mingw32 lib/puppet/provider/exec/shell.rb
puppet-8.1.0-x64-mingw32 lib/puppet/provider/exec/shell.rb
puppet-8.1.0-universal-darwin lib/puppet/provider/exec/shell.rb
puppet-8.0.1 lib/puppet/provider/exec/shell.rb
puppet-8.0.1-x86-mingw32 lib/puppet/provider/exec/shell.rb
puppet-8.0.1-x64-mingw32 lib/puppet/provider/exec/shell.rb
puppet-8.0.1-universal-darwin lib/puppet/provider/exec/shell.rb