Move before/after_everything hooks so they're easier to find.
This commit is contained in:
parent
72bd96c656
commit
5356f487a5
1 changed files with 20 additions and 20 deletions
|
@ -506,6 +506,26 @@ map:
|
||||||
"check" action or an associated before/after hook.
|
"check" action or an associated before/after hook.
|
||||||
example:
|
example:
|
||||||
- echo "Error during prune/create/check."
|
- echo "Error during prune/create/check."
|
||||||
|
before_everything:
|
||||||
|
seq:
|
||||||
|
- type: str
|
||||||
|
desc: |
|
||||||
|
List of one or more shell commands or scripts to execute
|
||||||
|
before running all actions (if one of them is "create").
|
||||||
|
These are collected from all configuration files and then
|
||||||
|
run once before all of them (prior to all actions).
|
||||||
|
example:
|
||||||
|
- echo "Starting actions."
|
||||||
|
after_everything:
|
||||||
|
seq:
|
||||||
|
- type: str
|
||||||
|
desc: |
|
||||||
|
List of one or more shell commands or scripts to execute
|
||||||
|
after running all actions (if one of them is "create").
|
||||||
|
These are collected from all configuration files and then
|
||||||
|
run once after all of them (after any action).
|
||||||
|
example:
|
||||||
|
- echo "Completed actions."
|
||||||
postgresql_databases:
|
postgresql_databases:
|
||||||
seq:
|
seq:
|
||||||
- map:
|
- map:
|
||||||
|
@ -693,26 +713,6 @@ map:
|
||||||
documentation for details.
|
documentation for details.
|
||||||
example:
|
example:
|
||||||
https://cronhub.io/start/1f5e3410-254c-11e8-b61d-55875966d01
|
https://cronhub.io/start/1f5e3410-254c-11e8-b61d-55875966d01
|
||||||
before_everything:
|
|
||||||
seq:
|
|
||||||
- type: str
|
|
||||||
desc: |
|
|
||||||
List of one or more shell commands or scripts to execute
|
|
||||||
before running all actions (if one of them is "create").
|
|
||||||
These are collected from all configuration files and then
|
|
||||||
run once before all of them (prior to all actions).
|
|
||||||
example:
|
|
||||||
- echo "Starting actions."
|
|
||||||
after_everything:
|
|
||||||
seq:
|
|
||||||
- type: str
|
|
||||||
desc: |
|
|
||||||
List of one or more shell commands or scripts to execute
|
|
||||||
after running all actions (if one of them is "create").
|
|
||||||
These are collected from all configuration files and then
|
|
||||||
run once after all of them (after any action).
|
|
||||||
example:
|
|
||||||
- echo "Completed actions."
|
|
||||||
umask:
|
umask:
|
||||||
type: scalar
|
type: scalar
|
||||||
desc: |
|
desc: |
|
||||||
|
|
Loading…
Reference in a new issue