-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Clinton Wolfe <[email protected]>
- Loading branch information
1 parent
d3dbf3a
commit 1b54436
Showing
29 changed files
with
42 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# encoding: utf-8 | ||
# | ||
# Author:: Stephan Renatus <[email protected]> | ||
# Copyright (c) 2016-2019, Chef Software Inc. <[email protected]> | ||
# Copyright:: (c) 2016-2019, Chef Software Inc. <[email protected]> | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,8 @@ | |
name 'automate_win' | ||
maintainer 'Chef Software, Inc' | ||
maintainer_email '[email protected]' | ||
license 'Apache-2' | ||
license 'Apache-2.0' | ||
description 'Sample cookbook for configuring Chef Automate direct reporting' | ||
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) | ||
version '0.2.0' | ||
|
||
depends 'chef-client' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# encoding: utf-8 | ||
# | ||
# Cookbook Name:: automate_win | ||
# Cookbook:: automate_win | ||
# Recipe:: default | ||
|
||
include_recipe 'automate_win::chef_client_config' |
2 changes: 1 addition & 1 deletion
2
examples/automate_win/spec/unit/recipes/chef_client_config_spec.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,8 @@ | |
name 'wrapper_audit' | ||
maintainer 'Chef Software, Inc' | ||
maintainer_email '[email protected]' | ||
license 'Apache-2' | ||
license 'Apache-2.0' | ||
description 'Wrapper cookbook that runs Audit cookbook.' | ||
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) | ||
version '0.2.0' | ||
|
||
# Put whatever operating systems your company supports where you may want | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,3 @@ | ||
# encoding: utf-8 | ||
|
||
# used by ChefSpec | ||
if defined?(ChefSpec) | ||
|
||
ChefSpec.define_matcher :compliance_profile | ||
ChefSpec.define_matcher :inspec_gem | ||
|
||
def install_inspec_gem(resource_name) | ||
ChefSpec::Matchers::ResourceMatcher.new(:inspec_gem, :install, resource_name) | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,12 @@ | |
maintainer_email '[email protected]' | ||
license 'Apache-2.0' | ||
description 'Allows for fetching and executing compliance profiles, and reporting their results' | ||
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) | ||
version '9.0.1' | ||
|
||
source_url 'https://github.com/chef-cookbooks/audit' | ||
issues_url 'https://github.com/chef-cookbooks/audit/issues' | ||
|
||
chef_version '>= 12.20' if respond_to?(:chef_version) | ||
chef_version '>= 12.20' | ||
|
||
supports 'aix' | ||
supports 'amazon' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# encoding: utf-8 | ||
# | ||
# Cookbook Name:: audit | ||
# Cookbook:: audit | ||
# Spec:: cs_automate_spec | ||
|
||
require 'spec_helper' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# encoding: utf-8 | ||
# | ||
# Cookbook Name:: audit | ||
# Cookbook:: audit | ||
# Spec:: json-file | ||
|
||
require 'spec_helper' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
name 'test_helper' | ||
maintainer 'The Authors' | ||
maintainer_email '[email protected]' | ||
license 'all_rights' | ||
maintainer 'The InSpec Team' | ||
maintainer_email '[email protected]' | ||
license 'all rights reserved' | ||
description 'Installs/Configures test_helper' | ||
long_description 'Installs/Configures test_helper' | ||
version '0.1.0' | ||
|
||
# If you upload to Supermarket you should set this so your cookbook | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
maintainer_email '[email protected]' | ||
license 'All rights reserved' | ||
description 'Installs/Configures kitchen-automate' | ||
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) | ||
version '0.1.0' | ||
|
||
depends 'audit' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
directory '/root/.chef' do | ||
mode 00770 | ||
mode '770' | ||
action :create | ||
end | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters