21 lines
406 B
Text
21 lines
406 B
Text
case "$__target_host" in
|
|
localhost)
|
|
# Indicate that the target host is configured with cdist
|
|
__file /etc/cdist-configured
|
|
|
|
# Copy a cool motd from the type's file directory
|
|
__motd --source "$__files/motd"
|
|
|
|
# __package emacs --state present
|
|
|
|
__timezone Europe/Zurich
|
|
|
|
__my_computer
|
|
|
|
# __my_nginx
|
|
|
|
__my_nginx_site woo.com
|
|
__my_nginx_site chee.se
|
|
;;
|
|
esac
|
|
|