Skip to content

Commit

Permalink
Merge pull request #220 from tclahr/patch-8
Browse files Browse the repository at this point in the history
Patch 8
  • Loading branch information
tclahr authored Apr 22, 2024
2 parents b3b7358 + 0157a2b commit cfeebaf
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
- files/packages/pkg_contents.yaml: Updated collection support for NetBSD 10 [netbsd] (by [Herbert-Karl](https://github.com/Herbert-Karl)).
- live_response/containers/docker.yaml: Added collection support for resource usage statistics of each container [linux].
- live_response/containers/podman.yaml: Added collection support for resource usage statistics of each container [linux].
- live_response/packages/brew.yaml: Added collection support for packages installed through brew package manager [macos] (by [Pierre-Gronau-ndaal](https://github.com/Pierre-Gronau-ndaal)).
- live_response/packages/equo.yaml: Added collection support for packages installed through Entropy package manager [linux] (by [Pierre-Gronau-ndaal](https://github.com/Pierre-Gronau-ndaal)).
- live_response/packages/nix.yaml: Added collection support for packages installed through Nix package manager [linux] (by [Pierre-Gronau-ndaal](https://github.com/Pierre-Gronau-ndaal)).
- live_response/packages/pip.yaml: Added collection support for Python packages installed through pip [linux] (by [sanderu](https://github.com/sanderu)).
Expand Down
39 changes: 39 additions & 0 deletions artifacts/live_response/packages/brew.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
version: 1.0
artifacts:
-
description: Display installed packages.
supported_os: [macos]
collector: command
command: brew list
output_file: brew_list.txt
-
description: Display CLI only installed packages.
supported_os: [macos]
collector: command
command: brew list --formula
output_file: brew_list_--formula.txt
-
description: Display GUI only installed packages.
supported_os: [macos]
collector: command
command: brew list --cask
output_file: brew_list_--cask.txt
-
description: Display installed packages including their version numbers.
supported_os: [macos]
collector: command
command: brew list --versions --multiple
output_file: brew_list_--versions_--multiple.txt
-
description: Display all top-level packages.
supported_os: [macos]
collector: command
command: brew leaves
output_file: brew_leaves.txt
-
description: Display installed packages and their dependencies, in a tree view.
supported_os: [macos]
collector: command
command: brew deps --tree --installed
output_file: brew_deps_--tree_--installed.txt

2 changes: 1 addition & 1 deletion uac
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ fi
# set path
PATH="/usr/xpg4/bin:/usr/xpg6/bin:/bin:/sbin:/usr/bin:/usr/sbin"
PATH="${PATH}:/usr/local/bin:/usr/local/sbin:/usr/ucb:/usr/ccs/bin:/opt/bin"
PATH="${PATH}:/opt/sbin:/opt/local/bin:/snap/bin:/netscaler"
PATH="${PATH}:/opt/sbin:/opt/local/bin:/snap/bin:/netscaler:/opt/homebrew/bin"
export PATH

# load lib files
Expand Down

0 comments on commit cfeebaf

Please sign in to comment.