cram/test/integration/cram.toml

28 lines
543 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
# Where to load requirements from
# Types: package, profile
require_root = [
["${PWD}/packages.d", "package"],
["${PWD}/profiles.d", "profile"],
["${PWD}/hosts.d", "profile"],
]
# Choice([error, warn, ignore])
missing_require = "error"
[cram.task.apply]
missing_require = "ignore"
require = [
2022-09-13 07:24:20 +00:00
# "hosts.d/${FQDN}",
# "hosts.d/${HOSTNAME}",
"hosts.d/test",
2022-09-13 06:57:23 +00:00
"profiles.d/default",
]