26 lines
548 B
TOML
26 lines
548 B
TOML
[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, and the requirement type
|
|
# Types: package, profile
|
|
require_root = [
|
|
["package", "${PWD}/packages.d"],
|
|
["profile", "${PWD}/profiles.d"],
|
|
["profile", "${PWD}/hosts.d"],
|
|
]
|
|
# Choice([error, warn, ignore])
|
|
missing_require = "error"
|
|
|
|
[cram.task.apply]
|
|
missing_require = "ignore"
|
|
require = [
|
|
"hosts.d/${FQDN}",
|
|
"hosts.d/${HOSTNAME}",
|
|
"profiles.d/default",
|
|
]
|