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
433 B
20 lines
433 B
14 years ago
|
#
|
||
|
# This is a sample manifest, but used in real world
|
||
|
#
|
||
|
|
||
14 years ago
|
# This is debug and should not be in a production environment
|
||
|
echo "Running initial manifest for $__target_host"
|
||
|
echo "We could access other manifests in $__manifests"
|
||
|
|
||
|
case "$__target_host" in
|
||
14 years ago
|
localhost)
|
||
14 years ago
|
__issue iddoesnotmatterhere
|
||
14 years ago
|
__file test --type file --destination /tmp/cdist-testfile
|
||
14 years ago
|
;;
|
||
14 years ago
|
|
||
|
icarus)
|
||
|
__package tree --ensure installed
|
||
|
;;
|
||
|
|
||
14 years ago
|
esac
|