Blame view

database/mode_panique_macos.sh 1.19 KB
7df3c2ba   Etienne Pallier   schémas BD (png, ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/bash

# Pour Mac OS recent (10.10, Yosemite), la syntaxe du SED est differente
# Il faut donc faire une copie de ce fichier et transformer les instructions sed a l'interieur
# Pour cela, il suffit d'executer ces 2 lignes :
# cp ce_script.sh ce_script_macosx.sh
# sed -e "s/ -i '' / -i '' /" -i '' ce_script_macosx.sh

if [ ! -f ../config/app.php ] ; then
echo "Vous devez executer ce script depuis le dossier database/"
exit 1
fi


# Get login, pass, dbname, and hostname
username=$(grep "/\*d\*/'username'" ../config/app.php | cut -d"'" -f4)
password=$(grep "/\*d\*/'password'" ../config/app.php | cut -d"'" -f4)
database=$(grep "/\*d\*/'database'" ../config/app.php | cut -d"'" -f4)
host=$(grep "/\*d\*/'host'" ../config/app.php | cut -d"'" -f4)


cp -p ./set_mode_install.sql ./set_mode_install-build.sql

# Execute sql update script
sed -e "s/database/$database/" -i '' ./set_mode_install-build.sql
mysql --user=$username --password=$password -h $host < ./set_mode_install-build.sql

# Delete cakephp cache
63c3cb16   epallier   Nombreux petits b...
29
echo "Entrer votre mot de passe sudoer (pour sudo):"
7df3c2ba   Etienne Pallier   schémas BD (png, ...
30
31
32
33
34
35
sudo rm ../tmp/cache/models/*
sudo rm ../tmp/cache/persistent/*

sudo chmod -R 777 ../tmp
sudo chmod -R 777 ../vendor
sudo chmod -R 777 ../webroot