mirror of
https://github.com/inspec/inspec
synced 2024-12-18 09:03:12 +00:00
11 lines
223 B
Ruby
11 lines
223 B
Ruby
# encoding: utf-8
|
|
# author: Dominik Richter
|
|
# author: Christoph Hartmann
|
|
|
|
class Vulcano::Backends::SpecinfraHelper
|
|
module Exec
|
|
def self.configure(_conf)
|
|
Specinfra.configuration.backend = :exec
|
|
end
|
|
end
|
|
end
|