You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
257 B

  1. #!/usr/bin/env bash
  2. #== Bash helpers ==
  3. function info {
  4. echo " "
  5. echo "--> $1"
  6. echo " "
  7. }
  8. #== Provision script ==
  9. info "Provision-script user: `whoami`"
  10. info "Restart web-stack"
  11. service php5-fpm restart
  12. service nginx restart
  13. service mysql restart