diff options
author | John Keiser <john@johnkeiser.com> | 2015-12-03 17:07:35 -0800 |
---|---|---|
committer | Chris Doherty <cdoherty@chef.io> | 2015-12-07 14:33:18 -0800 |
commit | 82407750aa4b872c73baeae8afce42465b870a48 (patch) | |
tree | ec0fb8e4c504353272160c663c0e2ba9a7cb5887 /bin | |
parent | 4eaad3f905d963121d8bce2dd27f60ade40707c0 (diff) | |
download | chef-zero-82407750aa4b872c73baeae8afce42465b870a48.tar.gz |
Make policy groups and policies betterer
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/chef-zero | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/chef-zero b/bin/chef-zero index 54739bc..231d71b 100755 --- a/bin/chef-zero +++ b/bin/chef-zero @@ -55,6 +55,11 @@ OptionParser.new do |opts| options[:log_file] = value end + opts.on("--enterprise", "Whether to run in enterprise mode") do |value| + options[:single_org] = nil + options[:osc_compat] = false + end + opts.on("--multi-org", "Whether to run in multi-org mode") do |value| options[:single_org] = nil end |