bundler
bundler
tool to create or modify bundles for vorteil.io
The bundler tool helps to build, modify, extract or inspect vorteil bundles. It contains only four commands:
create
Creates a vorteil.io bundle based on the files in the provided toml configuration file.
bundler create 11.22.3 /path/to/bundle.toml > vorteil-11.22.3
Extracts all files from an existing bundle to the provided folder.
bundler extract /path/to/kernel-99.99.1 /tmp/folder
inspect
Inspects the bundle and returns all file names and tags in this bundle.
bundler inspect /path/to/kernel-99.99.1
process
Create a "live" bundle for the tags provided. If run with argument "dry-run" it only shows the files being on the bundle with those tags applied.
bundler process /path/to/kernel-99.99.1 tcpdump --dry-run
bundler process /path/to/kernel-99.99.1 tcpdump > file
Building
go build -o bundler cmd/main.go
License
Distributed under the Apache 2.0 License. See LICENSE
for more information.