Advertisement
Guest User

Untitled

a guest
Feb 28th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. # db info
  4. host="DBHOST"
  5. user="DBUSER"
  6. pass="DBPASS"
  7. name="DBNAME"
  8.  
  9. # path info
  10. project="/var/www/uneak"
  11. dumppath="db_backup/dump"
  12. dumpfile="oncommit-dump.sql"
  13.  
  14. # cmd
  15. mysqldump="/usr/bin/mysqldump"
  16. mysql="/usr/bin/mysql"
  17.  
  18. dumpptions="--skip-extended-insert"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement