cram/test/integration/cram.toml

27 lines
548 B
TOML
Raw Normal View History

2022-09-13 06:57:23 +00:00
[cram]
version = 1
[cram.task.default]
confdir = "${PWD}"
destdir = "${HOME}"
state_file = "${PWD}/.cram.log"
optimize = true
exec_idempotent = true
2022-09-14 05:21:18 +00:00
# Where to load requirements from, and the requirement type
2022-09-13 06:57:23 +00:00
# Types: package, profile
require_root = [
2022-09-14 05:21:18 +00:00
["package", "${PWD}/packages.d"],
["profile", "${PWD}/profiles.d"],
["profile", "${PWD}/hosts.d"],
2022-09-13 06:57:23 +00:00
]
# Choice([error, warn, ignore])
missing_require = "error"
[cram.task.apply]
missing_require = "ignore"
require = [
2022-09-14 05:21:18 +00:00
"hosts.d/${FQDN}",
"hosts.d/${HOSTNAME}",
2022-09-13 06:57:23 +00:00
"profiles.d/default",
]