-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding basic Windows agent support (#38)
* created auditd test branch * don't reassign that variable * move that down a bit in the case statements * fix amazon linux repo url and auditd disabling * updated spec for yum/amazon test * use old style os fact * ensure facts are in specs * wow, okay. missed another spot. * disable auditd on rhel like oses * don't set param twice * updated readme and changelog * updated metadata * updated gitignore * adding windows support * added windows specific paths we shall see * don't reassign variables * missing a comma * make sure vars are defined clean this up later. we don't need to define some of those for windows, like gpg key and friends. * define another thing we don't need here. just want to test basic functionality. * fix missing brace * allow upgrades * ensure installed only for now * skip configure hile testing but get back to it * wrong function there man, i'm rusty. * use lwf/remote_file to download * missing comma * more typos * add bin paths for windows see if config works * trying another thing here * added more params made config do less on windows * diff default ruleset for windows * pass deploy key from top level * append the deploy key to the windows install opts * apparently order is important here * ensure the package resource is named correctly on windows * use the name reported by add/remove programs/registry * updated docs a little will have to go back to add new params, etc. * add windows data yaml will also need to flesh this out some
- Loading branch information
1 parent
08962c5
commit 3422d34
Showing
11 changed files
with
179 additions
and
36 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
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
threatstack::params: | ||
repo_class: '::threatstack::msi' | ||
gpg_key: undef | ||
disable_auditd: false |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# == Class: threatstack::msi | ||
# | ||
# Download Threat Stack msi | ||
# | ||
# === Examples | ||
# | ||
# This class is not meant to be directly realized outside of | ||
# Class['::threatstack']. | ||
# | ||
# This is sort of a dummy class but might be used at some point. | ||
# | ||
# === Authors | ||
# | ||
# Nate St. Germain <nate.stgermain@threatstack.com> | ||
# | ||
# === Copyright | ||
# | ||
# Copyright 2019 Threat Stack, Inc. | ||
# | ||
class threatstack::msi inherits ::threatstack::params { | ||
} |
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 |
---|---|---|
|
@@ -23,4 +23,3 @@ | |
} | ||
|
||
} | ||
|
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