17 lines
340 B
Bash
17 lines
340 B
Bash
#!/bin/sh
|
|
|
|
sh -e "$__manifest/firewall"
|
|
|
|
case "$__target_host" in
|
|
# Everybody has this
|
|
localhost)
|
|
#__my_computer
|
|
#__colourful_file test --colour test1 --colour test2
|
|
#__my_dotfiles
|
|
__all_in_one --with-x --extra-packages git
|
|
;;
|
|
*)
|
|
__my_nginx
|
|
__my_nginx_site $__target_host #test
|
|
esac
|
|
|