summaryrefslogtreecommitdiffstats
path: root/imagrc.toml
blob: 5453e9d826a2fcfe65fef2ccf812a3e3d0db4616 (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
32
# 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
mutable_hooks = false

[store.hooks]

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