~dveeden/mysql-sandbox/mysql-sandbox

« back to all changes in this revision

Viewing changes to script_templates/process/use.sh

  • Committer: Giuseppe Maxia
  • Date: 2009-05-09 08:04:44 UTC
  • Revision ID: g.maxia@gmail.com-20090509080444-jy8a330el0mt425a
Tags: 3.0
- 3.0.00 GA release
- no code modification. Same codebase as 2.0.99f
- completed cookbook (41 recipes in MySQL::Sandbox::Recipes)
- added script_templates directory (No modification in current version, just preparation for 3.1.xx)
- added drafts directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!_BINBASH_
 
2
__LICENSE__
 
3
 
 
4
#-----------------------------------------
 
5
SBDIR="_HOME_DIR_/_SANDBOXDIR_"
 
6
. "$SBDIR/sandbox_env"
 
7
#-----------------------------------------
 
8
 
 
9
 
 
10
if [ -f $PIDFILE ]
 
11
then
 
12
    $MYSQL --defaults-file=$SBDIR/my.sandbox.cnf $MYCLIENT_OPTIONS "$@"
 
13
fi
 
14