2016-05-09 15:13:17 +00:00
|
|
|
# This is a example configuration file for the imag suite.
|
|
|
|
# It is written in TOML
|
|
|
|
|
|
|
|
[store]
|
|
|
|
|
2016-07-16 20:36:06 +00:00
|
|
|
# Set to false if you do not want imag to create the directory where the store
|
|
|
|
# lives implicitely
|
|
|
|
implicit-create = false
|
|
|
|
|
2016-05-26 16:42:20 +00:00
|
|
|
# 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" ]
|
2016-05-09 15:13:17 +00:00
|
|
|
|
2016-07-15 21:25:09 +00:00
|
|
|
pre-create-hook-aspects = [ "debug", "vcs" ]
|
|
|
|
post-create-hook-aspects = [ "debug", "vcs" ]
|
2016-05-09 15:13:17 +00:00
|
|
|
|
2016-07-15 21:35:34 +00:00
|
|
|
pre-move-hook-aspects = [ "debug" ]
|
|
|
|
post-move-hook-aspects = [ "debug" ]
|
|
|
|
|
2016-07-15 21:25:09 +00:00
|
|
|
pre-retrieve-hook-aspects = [ "debug", "vcs" ]
|
|
|
|
post-retrieve-hook-aspects = [ "debug", "vcs" ]
|
2016-05-09 15:13:17 +00:00
|
|
|
|
2016-07-15 21:25:09 +00:00
|
|
|
pre-update-hook-aspects = [ "debug", "vcs" ]
|
|
|
|
post-update-hook-aspects = [ "debug", "vcs" ]
|
2016-05-09 15:13:17 +00:00
|
|
|
|
2016-07-15 21:25:09 +00:00
|
|
|
pre-delete-hook-aspects = [ "debug", "vcs" ]
|
|
|
|
post-delete-hook-aspects = [ "debug", "vcs" ]
|
2016-05-09 15:13:17 +00:00
|
|
|
|
2016-07-15 22:09:22 +00:00
|
|
|
[store.aspects.debug]
|
2016-05-09 15:13:17 +00:00
|
|
|
parallel = false
|
2016-07-15 22:09:22 +00:00
|
|
|
mutable_hooks = true
|
2016-05-09 15:13:17 +00:00
|
|
|
|
2016-07-15 21:25:09 +00:00
|
|
|
[store.aspects.vcs]
|
|
|
|
parallel = false
|
|
|
|
mutable_hooks = false
|
|
|
|
|
2016-07-16 13:41:04 +00:00
|
|
|
[store.hooks.stdhook_debug]
|
2016-05-09 15:13:17 +00:00
|
|
|
aspect = "debug"
|
2016-07-15 22:09:22 +00:00
|
|
|
|
2016-07-15 21:25:09 +00:00
|
|
|
[store.hooks.stdhook_git_create]
|
|
|
|
aspect = "vcs"
|
|
|
|
|
2016-07-16 15:31:19 +00:00
|
|
|
# Fail if the repository cannot be opened. If this is set to `false`, the error
|
|
|
|
# will be printed, but will not abort the store operation. `true` will print the
|
|
|
|
# error and abort the store action.
|
|
|
|
abort_on_repo_init_failure = true
|
2016-07-15 21:25:09 +00:00
|
|
|
|
2016-07-16 15:58:18 +00:00
|
|
|
# Ensure to be on this branche before doing anything.
|
2016-07-29 08:24:10 +00:00
|
|
|
ensure_branch = "refs/heads/master"
|
2016-07-16 15:58:18 +00:00
|
|
|
|
2016-07-16 16:01:02 +00:00
|
|
|
# Try to checkout the ensure_branch if it isn't checked out
|
|
|
|
try_checkout_ensure_branch = true
|
|
|
|
|
2016-07-15 21:25:09 +00:00
|
|
|
[store.hooks.stdhook_git_retrieve]
|
|
|
|
aspect = "vcs"
|
|
|
|
|
2016-07-16 15:31:19 +00:00
|
|
|
# Fail if the repository cannot be opened. If this is set to `false`, the error
|
|
|
|
# will be printed, but will not abort the store operation. `true` will print the
|
|
|
|
# error and abort the store action.
|
|
|
|
abort_on_repo_init_failure = true
|
|
|
|
|
2016-07-16 15:58:18 +00:00
|
|
|
# Ensure to be on this branche before doing anything.
|
|
|
|
ensure_branch = "master"
|
|
|
|
|
2016-07-16 16:01:02 +00:00
|
|
|
# Try to checkout the ensure_branch if it isn't checked out
|
|
|
|
try_checkout_ensure_branch = true
|
|
|
|
|
2016-07-16 15:31:19 +00:00
|
|
|
[store.hooks.stdhook_git_delete]
|
|
|
|
aspect = "vcs"
|
|
|
|
|
|
|
|
# Fail if the repository cannot be opened. If this is set to `false`, the error
|
|
|
|
# will be printed, but will not abort the store operation. `true` will print the
|
|
|
|
# error and abort the store action.
|
|
|
|
abort_on_repo_init_failure = true
|
|
|
|
|
2016-07-16 15:58:18 +00:00
|
|
|
# Ensure to be on this branche before doing anything.
|
|
|
|
ensure_branch = "master"
|
|
|
|
|
2016-07-16 16:01:02 +00:00
|
|
|
# Try to checkout the ensure_branch if it isn't checked out
|
|
|
|
try_checkout_ensure_branch = true
|
|
|
|
|
2016-07-15 21:25:09 +00:00
|
|
|
[store.hooks.stdhook_git_update]
|
|
|
|
aspect = "vcs"
|
|
|
|
|
2016-07-16 15:31:19 +00:00
|
|
|
# Fail if the repository cannot be opened. If this is set to `false`, the error
|
|
|
|
# will be printed, but will not abort the store operation. `true` will print the
|
|
|
|
# error and abort the store action.
|
|
|
|
abort_on_repo_init_failure = true
|
|
|
|
|
2016-07-16 15:58:18 +00:00
|
|
|
# Ensure to be on this branche before doing anything.
|
|
|
|
ensure_branch = "master"
|
|
|
|
|
2016-07-16 16:01:02 +00:00
|
|
|
# Try to checkout the ensure_branch if it isn't checked out
|
|
|
|
try_checkout_ensure_branch = true
|
|
|
|
|
2016-09-08 15:09:10 +00:00
|
|
|
# Commit configuration
|
|
|
|
[store.hooks.stdhook_git_update.commit]
|
|
|
|
|
|
|
|
# Whether to do the commit interactively
|
|
|
|
interactive = false
|
|
|
|
|
|
|
|
# Set to true to use the $EDITOR for the commit, to false to do on commandline
|
|
|
|
# When committing without editor, only a single line is allowed as commit
|
|
|
|
# message
|
|
|
|
interactive_editor = false
|
|
|
|
|
|
|
|
# Commit message if the commit is not interactive
|
|
|
|
message = "Update"
|
|
|
|
|