23 lines
586 B
Text
23 lines
586 B
Text
__file /etc/cdist-configured
|
|
|
|
case "$__target_host" in
|
|
localhost)
|
|
# __motd
|
|
# __timezone Asia/Seoul
|
|
# __my_computer
|
|
# __colourful_file --colour yellow --colour blue --colour red --colour green
|
|
# __my_dotfiles
|
|
# __my_nginx_site $__target_host
|
|
# __all_in_one $__target_host --with-x --extra-packages tree --extra-packages htop
|
|
__my_firewall --file /etc/my-nftables
|
|
;;
|
|
jafo.laptop)
|
|
__motd
|
|
__timezone Asia/Seoul
|
|
# __my_computer
|
|
;;
|
|
*)
|
|
# __my_nginx
|
|
__my_nginx_site $__target_host
|
|
;;
|
|
esac
|