You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
439 B
20 lines
439 B
#
|
|
# This is a sample manifest, but used in real world
|
|
#
|
|
|
|
# All systems get a file /etc/cdist-managed, so the sysadmin knows
|
|
# who manages the configuration.
|
|
#__file /etc/cdist-managed --type file
|
|
|
|
# All ikqs get a sample file
|
|
case "$__cdist_target_host" in
|
|
localhost)
|
|
__issue iddoesnotmatterhere
|
|
__file test --type file --destination /tmp/cdist-testfile
|
|
;;
|
|
|
|
icarus)
|
|
__package tree --ensure installed
|
|
;;
|
|
|
|
esac
|
|
|