diff options
author | John McCrae <john.mccrae@progress.com> | 2022-06-14 12:30:18 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-14 12:30:18 -0700 |
commit | 48c896739cc59409b69897f438cf155b5062616a (patch) | |
tree | f3aa59370d4553cf55eded357cbf3adc02f9774a | |
parent | a3ee2700a612536b75eebafdcb1376f25c8c0b47 (diff) | |
parent | 586b1967e1d8dc48a1e8061cc09a1e1d75366814 (diff) | |
download | chef-48c896739cc59409b69897f438cf155b5062616a.tar.gz |
Merge pull request #12806 from sentryinsurance/add-CONTAINER_IMAGE-dist
Add CONTAINER_IMAGE dist constant. errors are unrelated to the code.
-rw-r--r-- | chef-utils/lib/chef-utils/dist.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chef-utils/lib/chef-utils/dist.rb b/chef-utils/lib/chef-utils/dist.rb index fb2292ecfd..a3d8a27d0e 100644 --- a/chef-utils/lib/chef-utils/dist.rb +++ b/chef-utils/lib/chef-utils/dist.rb @@ -64,6 +64,9 @@ module ChefUtils # The client's gem GEM = "chef" + + # The client's container image + CONTAINER_REF = "chef/chef" end class Inspec |