2020-05-15 15:15:39 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
sh -e "$__manifest/firewall"
|
|
|
|
|
2020-05-04 15:00:58 +00:00
|
|
|
case "$__target_host" in
|
|
|
|
# Everybody has this
|
|
|
|
localhost)
|
2020-05-15 15:15:39 +00:00
|
|
|
#__my_computer
|
|
|
|
#__colourful_file test --colour test1 --colour test2
|
|
|
|
#__my_dotfiles
|
|
|
|
__all_in_one --with-x --extra-packages git
|
2020-05-04 15:00:58 +00:00
|
|
|
;;
|
2020-05-15 15:15:39 +00:00
|
|
|
*)
|
|
|
|
__my_nginx
|
|
|
|
__my_nginx_site $__target_host #test
|
2020-05-04 15:00:58 +00:00
|
|
|
esac
|
2020-05-15 15:15:39 +00:00
|
|
|
|