From 5b3c4cbce360b2eb67a25e9f1918967c612ed328 Mon Sep 17 00:00:00 2001 From: vm-packages Date: Tue, 14 Jan 2025 16:08:26 +0000 Subject: [PATCH] Add rat-king-parser.vm Closes https://github.com/sara-rn/VM-Packages/issues/2. --- .../rat-king-parser.vm/rat-king-parser.vm.nuspec | 13 +++++++++++++ .../rat-king-parser.vm/tools/chocolateyinstall.ps1 | 7 +++++++ .../tools/chocolateyuninstall.ps1 | 8 ++++++++ 3 files changed, 28 insertions(+) create mode 100644 packages/rat-king-parser.vm/rat-king-parser.vm.nuspec create mode 100644 packages/rat-king-parser.vm/tools/chocolateyinstall.ps1 create mode 100644 packages/rat-king-parser.vm/tools/chocolateyuninstall.ps1 diff --git a/packages/rat-king-parser.vm/rat-king-parser.vm.nuspec b/packages/rat-king-parser.vm/rat-king-parser.vm.nuspec new file mode 100644 index 00000000..947488b1 --- /dev/null +++ b/packages/rat-king-parser.vm/rat-king-parser.vm.nuspec @@ -0,0 +1,13 @@ + + + + rat-king-parser.vm + 4.0.1 + Jeff Archer + multi-family RAT config parser/extractor + + + + + + diff --git a/packages/rat-king-parser.vm/tools/chocolateyinstall.ps1 b/packages/rat-king-parser.vm/tools/chocolateyinstall.ps1 new file mode 100644 index 00000000..cae644c2 --- /dev/null +++ b/packages/rat-king-parser.vm/tools/chocolateyinstall.ps1 @@ -0,0 +1,7 @@ +$ErrorActionPreference = 'Stop' +Import-Module vm.common -Force -DisableNameChecking + +$toolName = 'rat-king-parser' +$category = 'Python' + +VM-Install-With-Pip -toolName $toolName -category $category diff --git a/packages/rat-king-parser.vm/tools/chocolateyuninstall.ps1 b/packages/rat-king-parser.vm/tools/chocolateyuninstall.ps1 new file mode 100644 index 00000000..0f5899f9 --- /dev/null +++ b/packages/rat-king-parser.vm/tools/chocolateyuninstall.ps1 @@ -0,0 +1,8 @@ +$ErrorActionPreference = 'Continue' +Import-Module vm.common -Force -DisableNameChecking + +$pluginName = 'rat-king-parser' +$category = 'Python' + +VM-Uninstall-With-Pip $toolName $category +