cdist/conf/manifests/init
Nico Schottelius 7d766d5376 export __manifests
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
2011-02-24 14:47:52 +01:00

22 lines
458 B
Text
Executable file

#
# This is a sample manifest, but used in real world
#
echo $__manifests
# 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