26 lines
522 B
TOML
26 lines
522 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
|
|
# 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 = [
|
|
"hosts.d/${FQDN}",
|
|
"hosts.d/${HOSTNAME}",
|
|
"profiles.d/default",
|
|
]
|