-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Add documentation about gallia.toml and hooks
- Loading branch information
1 parent
98097fd
commit ba8d00d
Showing
2 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<!-- | ||
SPDX-FileCopyrightText: AISEC Pentesting Team | ||
SPDX-License-Identifier: CC0-1.0 | ||
--> | ||
|
||
# Configuration | ||
|
||
## gallia.toml | ||
|
||
All `gallia` settings stem from the commandline interface. | ||
The documentation for all available settings per subcommand is available via `-h/--help`. | ||
Frequently used settings can be put in a configfile which is called `gallia.toml`. | ||
Settings from the config file set the **default** of the respective commandline option. | ||
The config can always be overwritten by manually setting the relevant cli option. | ||
|
||
The configuration file `gallia.toml` is written in [TOML](https://toml.io/en/). | ||
Inheritence is not supported; the first file is loaded. | ||
The `gallia.toml` file is loaded from these locations (in this particular order): | ||
|
||
* path specified in the env variable `GALLIA_CONFIG`; see {doc}`../env`. | ||
* current directory | ||
* current Git root (if the current directory is a Git repository) | ||
* `$XDG_CONFIG_HOME/gallia/gallia.toml` | ||
* `~/.config/gallia/gallia.toml` | ||
|
||
Only some cli options are exposed to the config file. | ||
The available config settings can be obtained from `gallia --template`. | ||
The output of `--template` is maintained to be up to date and is intended as a starting point. | ||
|
||
## Hooks | ||
|
||
`gallia` supports hooks for preparation or cleanup/postprocessing tasks. | ||
Alternatively, they can be useful for e.g. sending notifications about the exit_code via e.g. matrix or ntfy.sh. | ||
Hooks are shell scripts which are executed before (= pre-hook) or after (= post-hook) the `main()` method. | ||
These scripts can be specified via `--pre-hook` or `--post-hook` or via `gallia.toml` as well. | ||
|
||
The hook scripts have these environment variables set: | ||
|
||
GALLIA_HOOK | ||
: Either `pre` or `post`. | ||
|
||
GALLIA_ARTIFACTS_DIR | ||
: Path to the artifactsdir for the current testrun. | ||
|
||
GALLIA_EXIT_CODE | ||
: Only set for post-hooks; is set to the exit_code which `gallia` will use after the hook terminates. | ||
For instance GALLIA_EXIT_CODE different from zero means that the current testrun failed. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters