Munki-like Application Management for Windows
Gorilla is intended to provide application management on Windows using Munki as inspiration.
Gorilla supports .msi, .ps1, .exe, or .nupkg (via chocolatey).
Information related to installing and configuring Gorilla can be found on the Wiki. For quick manual-test setup helpers on a fresh Windows VM, see utils/manual-test/README.md.
If you just want the latest version, download it from the releases page.
Building from source requires the Go tools.
After cloning this repo, just run make build. A new binary will be created in build/
After cloning this repo, just run go build -i ./cmd/gorilla. A new binary will be created in the current directory.
Pull Requests are always welcome. Before submitting, lint and test:
go fmt ./...
go test ./...
Gorilla also supports local repo admin workflows:
-b/-build: compilepackages-info/*.yamlfiles into catalog files undercatalogs/-i/-import: scaffold package-info data from an installer (currently stubbed as not yet implemented)
For these modes, set repo_path in config (or run from your repo root so the current working directory is used).
See examples/example_package-info.yaml for a package-info example.