mirror of
https://github.com/inspec/inspec
synced 2024-11-15 01:17:08 +00:00
a5309ea392
Signed-off-by: Ryan Davis <zenspider@chef.io>
20 lines
455 B
Ruby
20 lines
455 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Inspec
|
|
module Dist
|
|
# When referencing a product directly, like InSpec
|
|
PRODUCT_NAME = "Chef InSpec"
|
|
|
|
# The inspec executable
|
|
EXEC_NAME = "inspec"
|
|
|
|
# The name of the server product
|
|
SERVER_PRODUCT_NAME = "Chef Server"
|
|
|
|
# name of the automate product
|
|
AUTOMATE_PRODUCT_NAME = "Chef Automate"
|
|
|
|
# name of the compliance product
|
|
COMPLIANCE_PRODUCT_NAME = "Chef Compliance"
|
|
end
|
|
end
|