-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Cirlcleci 2.0 * Yaml lint * delivery fixes * Lint fixes * Fixes * Use context for license * Revert context * Update installs * lint fix * remove amazon linux 1 * Split to capture status results from compile steps * Minor version bump * Fedora and CentOS packaging updates * Update install.rb * Fixes #39 * Fixes #37 * Fixes #36 * Fixes #40 * Removes Fedora and updates checksums for rpm package * Cookstyle fixes * fix file resource error
- Loading branch information
1 parent
7a0020e
commit ab54e7f
Showing
20 changed files
with
122 additions
and
203 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,17 +1,41 @@ | ||
--- | ||
lint_and_unit: &lint_and_unit | ||
- delivery | ||
- danger | ||
- lint-yaml | ||
- lint-markdown | ||
version: 2.1 | ||
|
||
orbs: | ||
kitchen: sous-chefs/[email protected] | ||
|
||
kitchen: sous-chefs/kitchen@2 | ||
workflows: | ||
kitchen: | ||
jobs: | ||
- kitchen/yamllint: | ||
name: lint-yaml | ||
- kitchen/mdlint: | ||
name: lint-markdown | ||
- kitchen/danger: | ||
name: danger | ||
context: Danger | ||
- kitchen/lint: | ||
name: lint | ||
# - kitchen/dokken: | ||
# name: default | ||
# suite: default | ||
# requires: [ danger, lint ] | ||
- kitchen/delivery: | ||
name: delivery | ||
- kitchen/dokken-single: | ||
name: default-debian-8 | ||
suite: default-debian-8 | ||
requires: *lint_and_unit | ||
- kitchen/dokken-single: | ||
name: default-debian-9 | ||
suite: default-debian-9 | ||
requires: *lint_and_unit | ||
- kitchen/dokken-single: | ||
name: default-centos-7 | ||
suite: default-centos-7 | ||
requires: *lint_and_unit | ||
- kitchen/dokken-single: | ||
name: default-ubuntu-1604 | ||
suite: default-ubuntu-1604 | ||
requires: *lint_and_unit | ||
- kitchen/dokken-single: | ||
name: default-ubuntu-1804 | ||
suite: default-ubuntu-1804 | ||
requires: *lint_and_unit |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,28 +1,8 @@ | ||
# Configuration for lock-threads - https://github.com/dessant/lock-threads | ||
|
||
# Number of days of inactivity before a closed issue or pull request is locked | ||
daysUntilLock: 365 | ||
|
||
# Issues and pull requests with these labels will not be locked. Set to `[]` to disable | ||
--- | ||
daysUntilLock: 30 | ||
exemptLabels: [] | ||
|
||
# Label to add before locking, such as `outdated`. Set to `false` to disable | ||
lockLabel: false | ||
|
||
# Comment to post before locking. Set to `false` to disable | ||
lockComment: > | ||
This thread has been automatically locked since there has not been | ||
any recent activity after it was closed. Please open a new issue for | ||
related bugs. | ||
# Limit to only `issues` or `pulls` | ||
# only: issues | ||
|
||
# Optionally, specify configuration settings just for `issues` or `pulls` | ||
# issues: | ||
# exemptLabels: | ||
# - help-wanted | ||
# lockLabel: outdated | ||
|
||
# pulls: | ||
# daysUntilLock: 30 |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
rules "~MD013" |
This file was deleted.
Oops, something went wrong.
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,2 +1,3 @@ | ||
Please refer to | ||
https://github.com/chef-cookbooks/community_cookbook_documentation/blob/master/TESTING.MD | ||
# Testing | ||
|
||
Please refer to [the community cookbook documentation on testing](https://github.com/chef-cookbooks/community_cookbook_documentation/blob/master/TESTING.MD). |
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
driver: | ||
name: dokken | ||
privileged: true | ||
chef_version: <%= ENV['CHEF_VERSION'] || 'current' %> | ||
env: [CHEF_LICENSE=accept] | ||
|
||
transport: | ||
name: dokken | ||
|
||
provisioner: | ||
name: dokken | ||
deprecations_as_errors: true | ||
|
||
platforms: | ||
- name: debian-8 | ||
driver: | ||
image: dokken/debian-8 | ||
pid_one_command: /bin/systemd | ||
intermediate_instructions: | ||
- RUN /usr/bin/apt-get update | ||
|
||
- name: debian-9 | ||
driver: | ||
image: dokken/debian-9 | ||
pid_one_command: /bin/systemd | ||
intermediate_instructions: | ||
- RUN /usr/bin/apt-get update | ||
|
||
- name: centos-7 | ||
driver: | ||
image: dokken/centos-7 | ||
pid_one_command: /usr/lib/systemd/systemd | ||
|
||
- name: ubuntu-16.04 | ||
driver: | ||
image: dokken/ubuntu-16.04 | ||
pid_one_command: /bin/systemd | ||
intermediate_instructions: | ||
- RUN /usr/bin/apt-get update | ||
|
||
- name: ubuntu-18.04 | ||
driver: | ||
image: dokken/ubuntu-18.04 | ||
pid_one_command: /bin/systemd | ||
intermediate_instructions: | ||
- RUN /usr/bin/apt-get update |
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ def system_lib_dir | |
|
||
def package_suffix | ||
if platform?('fedora') | ||
'.f25' | ||
'.f29' | ||
else | ||
'.centos7' | ||
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 |
---|---|---|
|
@@ -3,8 +3,8 @@ | |
maintainer_email '[email protected]' | ||
license 'Apache-2.0' | ||
description 'Installs Snort IDS packages' | ||
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) | ||
version '4.0.1' | ||
|
||
version '4.0.2' | ||
chef_version '>= 13.0' | ||
source_url 'https://github.com/sous-chefs/snort' | ||
issues_url 'https://github.com/sous-chefs/snort/issues' | ||
|
Oops, something went wrong.