mirror of
https://github.com/inspec/inspec
synced 2024-11-13 08:27:08 +00:00
2857d07151
The opening and closing mechanic varied between all the various resources. This changes them all to use a HEREDOC with a tilde to remove leading whitespace. This removes the need for the special method to trim the `#print_example` method from shell. Signed-off-by: Franklin Webber <franklin.webber@gmail.com>
35 lines
843 B
Ruby
35 lines
843 B
Ruby
# encoding: utf-8
|
|
|
|
require 'utils/command_wrapper'
|
|
require 'resources/command'
|
|
|
|
module Inspec::Resources
|
|
class Ksh < Cmd
|
|
name 'ksh'
|
|
supports platform: 'unix'
|
|
desc 'Run a command or script in KornShell.'
|
|
example <<~EXAMPLE
|
|
describe ksh('ls -al /') do
|
|
its('stdout') { should match /bin/ }
|
|
its('stderr') { should eq '' }
|
|
its('exit_status') { should eq 0 }
|
|
end
|
|
|
|
# Specify the path of the executable:
|
|
ksh('...', path: '/usr/bin/ksh93')
|
|
|
|
# Specify arguments (defaults to -c)
|
|
ksh('...', args: '-x -c')
|
|
EXAMPLE
|
|
|
|
def initialize(command, options = {})
|
|
@raw_command = command
|
|
options[:shell] = 'ksh' if options.is_a?(Hash)
|
|
super(CommandWrapper.wrap(command, options))
|
|
end
|
|
|
|
def to_s
|
|
"KornShell command #{@raw_command}"
|
|
end
|
|
end
|
|
end
|