mode_panique.sh
1.66 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/bin/bash
# Mode DEBUG (=1 pour activer)
DEBUG=0
#DEBUG=1
# Mac ou Linux ?
# Mac
MACOS=1
# Linux
#MACOS=0
# 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)
if [[ $DEBUG == 1 ]] ; then
echo "db: $database"
echo "user: $username"
echo "pass: $password"
echo "host: $host"
exit
fi
cp -p ./set_mode_install.sql ./set_mode_install-build.sql
# Execute sql update script
if [[ $MACOS == 1 ]] ; then
# MacOS only :
sed -e "s/database/$database/" -i '' ./set_mode_install-build.sql
else
# Linux :
sed -e "s/database/$database/" -i ./set_mode_install-build.sql
fi
mysql --user=$username --password=$password -h $host < ./set_mode_install-build.sql
# Delete cakephp cache
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
echo
echo
echo "L'application est passée en mode 'installation'"
echo
echo "Maintenant, allez sur le site web (/) pour changer la configuration via la page web dédiée"
echo