mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
![]() Lines removed: over 500. Readiblity gained: A shitload Now you can actually get an overview of a manifest on a single screen height. I am sure that it will also save a lot of hassle when modifying schema in the future. No more "expected property name" etc. because of an extraneous comma Comments are of course natively support, so there's no need for this minify_json hokey pokey |
||
---|---|---|
.. | ||
__init__.py | ||
manifest-schema.yml | ||
README.md | ||
tasks.py |
Image script plugin
This plugin gives the possibility to the user to execute commands.
Plugin is defined in the manifest file, plugin section with:
"image_commands": {
"commands": [ [ "touch", "/var/www/index.html" ]],
}
The commands element is an array of commands. Each command is an array describing the executable and its arguments.
Command is executed in current context. It is possible to use variables to access the image or execute chroot commands in the image.
Available variables are: {root} : image mount point (to copy files for example or chroot commands)
Example:
[[ "touch", "{root}/var/www/hello" ],
[ "/usr/sbin/chroot", "{root}", "touch", "/var/www/hello"]]