Skip to content

Commit

Permalink
Add rat-king-parser.vm
Browse files Browse the repository at this point in the history
Closes #2.
  • Loading branch information
vm-packages committed Jan 14, 2025
1 parent 72acdd7 commit 5b3c4cb
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
13 changes: 13 additions & 0 deletions packages/rat-king-parser.vm/rat-king-parser.vm.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>rat-king-parser.vm</id>
<version>4.0.1</version>
<authors>Jeff Archer</authors>
<description>multi-family RAT config parser/extractor</description>
<dependencies>
<dependency id="common.vm" version="0.0.0.20241209" />
<dependency id="python3.vm" />
</dependencies>
</metadata>
</package>
7 changes: 7 additions & 0 deletions packages/rat-king-parser.vm/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -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
8 changes: 8 additions & 0 deletions packages/rat-king-parser.vm/tools/chocolateyuninstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
$ErrorActionPreference = 'Continue'
Import-Module vm.common -Force -DisableNameChecking

$pluginName = 'rat-king-parser'
$category = 'Python'

VM-Uninstall-With-Pip $toolName $category

0 comments on commit 5b3c4cb

Please sign in to comment.