2011-02-02 13:02:29 +00:00
|
|
|
#
|
|
|
|
# This is a sample manifest, but used in real world
|
|
|
|
#
|
|
|
|
|
2011-02-24 14:14:00 +00:00
|
|
|
# This is debug and should not be in a production environment
|
2011-03-09 19:22:02 +00:00
|
|
|
# echo "We could access other manifests in $__manifest"
|
2011-02-24 14:14:00 +00:00
|
|
|
|
2011-03-09 19:22:02 +00:00
|
|
|
# Every machine becomes a marker, so sysadmins know that automatic
|
|
|
|
# configurations are happening
|
2011-03-16 07:39:51 +00:00
|
|
|
__file /etc/cdist-configured
|
2011-02-25 01:13:11 +00:00
|
|
|
|
2011-02-24 14:14:00 +00:00
|
|
|
case "$__target_host" in
|
2011-03-03 07:55:02 +00:00
|
|
|
# Everybody has this
|
2011-02-22 16:25:31 +00:00
|
|
|
localhost)
|
2011-03-18 01:01:37 +00:00
|
|
|
require="__file/etc/cdist-configured" __link /tmp/cdist-testfile \
|
|
|
|
--source /etc/cdist-configured --type symbolic
|
|
|
|
require="__directory/tmp/cdist-test-dir" __file /tmp/cdist-test-dir/test-file \
|
|
|
|
--mode 0750 --owner nobody --group root
|
2011-03-18 00:51:44 +00:00
|
|
|
__directory /tmp/cdist-test-dir --mode 4777
|
2011-03-18 01:01:37 +00:00
|
|
|
|
|
|
|
require="__file/etc/cdist-configured __link/tmp/cdist-testfile" \
|
|
|
|
__file /tmp/cdist-another-testfile
|
|
|
|
|
2011-02-18 23:01:39 +00:00
|
|
|
;;
|
2011-02-22 15:11:07 +00:00
|
|
|
|
2011-03-09 19:22:02 +00:00
|
|
|
#
|
|
|
|
# Examples using different types
|
|
|
|
#
|
|
|
|
|
2011-06-23 10:27:54 +00:00
|
|
|
#
|
|
|
|
# Use an alias in /etc/hosts for localhost to use these hosts:
|
|
|
|
#
|
|
|
|
# 127.0.0.1 localhost.localdomain localhost cdist-archlinux
|
|
|
|
#
|
2011-03-02 22:34:34 +00:00
|
|
|
cdist-archlinux)
|
2011-03-09 19:22:02 +00:00
|
|
|
# This is the specific package type for pacman
|
2011-03-02 22:34:34 +00:00
|
|
|
__package_pacman zsh --state installed
|
2011-03-09 19:22:02 +00:00
|
|
|
|
|
|
|
# The __package type autoselect the right type based on the os
|
|
|
|
__package vim --state installed
|
2011-03-09 21:21:39 +00:00
|
|
|
|
|
|
|
# If the type is a singleton, it does not take an object id
|
|
|
|
__issue
|
2011-03-02 22:34:34 +00:00
|
|
|
;;
|
2011-03-09 19:22:02 +00:00
|
|
|
# This is how it would look like on gentoo
|
2011-03-03 07:44:03 +00:00
|
|
|
cdist-gentoo)
|
2011-03-09 19:22:02 +00:00
|
|
|
# Same stuff for gentoo
|
2011-03-03 07:44:58 +00:00
|
|
|
__package tree --state installed
|
2011-03-03 07:44:03 +00:00
|
|
|
;;
|
2011-03-16 10:20:18 +00:00
|
|
|
|
2011-03-09 19:22:02 +00:00
|
|
|
cdist-debian)
|
|
|
|
__package_apt atop --state installed
|
2011-06-23 11:38:36 +00:00
|
|
|
__package apache2 --state removed
|
2011-03-04 01:06:13 +00:00
|
|
|
;;
|
2011-03-09 19:22:02 +00:00
|
|
|
|
2011-03-16 10:20:18 +00:00
|
|
|
cdist-redhat)
|
|
|
|
__issue
|
|
|
|
__motd
|
|
|
|
;;
|
|
|
|
|
2011-03-09 19:22:02 +00:00
|
|
|
# Real machines may be used with their hostname or fqdn,
|
|
|
|
# depending on how you call cdist-deploy-to
|
|
|
|
# machine)
|
|
|
|
# ...
|
|
|
|
# ;;
|
|
|
|
# machine.example.org)
|
|
|
|
# ...
|
|
|
|
# ;;
|
2010-10-31 23:09:30 +00:00
|
|
|
esac
|