mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
0342cca62e
Two new commands have been created: * inspec habitat profile create /path/to/profile * inspec habitat profile upload /path/to/profile The `create` command creates a Habitat artifact that contains the contents of the Habitat profile found at the provided path. This will be used later in some Habitat + InSpec integrations. The `upload` command does the same create process but then uploads the resulting artifact to the Habitat Depot. Signed-off-by: Adam Leff <adam@leff.co>
10 lines
121 B
Ruby
10 lines
121 B
Ruby
# encoding: utf-8
|
|
# author: Adam Leff
|
|
|
|
require 'mixlib/log'
|
|
|
|
module Habitat
|
|
class Log
|
|
extend Mixlib::Log
|
|
end
|
|
end
|