summaryrefslogtreecommitdiffstats
path: root/imagrc.toml
blob: 148e53d0c1d1bf9aae684af74e1b1c0ae46511f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# This is a example configuration file for the imag suite.
# It is written in TOML

[store]

# Hooks which get executed right before the Store is closed.
# They get the store path as StoreId passed, so they can alter the complete
# store, so these hooks should be chosen carefully.
store-unload-hook-aspects  = [ "debug" ]

pre-create-hook-aspects    = [ "debug" ]
post-create-hook-aspects   = [ "debug" ]

pre-retrieve-hook-aspects  = [ "debug" ]
post-retrieve-hook-aspects = [ "debug" ]

pre-update-hook-aspects    = [ "debug" ]
post-update-hook-aspects   = [ "debug" ]

pre-delete-hook-aspects    = [ "debug" ]
post-delete-hook-aspects   = [ "debug" ]

[store.aspects]

[[aspects.debug]]
parallel = false

[store.hooks]

[[hooks.debug]]
aspect = "debug"