Projet

Général

Profil

Paste
Télécharger (2,39 ko) Statistiques
| Branche: | Révision:

root / other-scripts / d7-sync.sh @ 3eef768d

1
#!/usr/bin/env bash
2

    
3
help=<<EOF
4
This script is intended to ease the synchronisation of any site hosted by assos. It relies on bash, drush and requires @ssh assos@ to work.
5
The drupal installation is synched using git, the website files and database using rsync.
6

    
7
usage: d7-sync.sh [SITENAME]
8
If a sitename is provided, the script will sync the drupal installation and the sites'
9
folders and database. Othewise, only the drupal installation is synched.
10

    
11
TODO: improve chmod on files.
12
EOF
13

    
14
### Init
15
# Config
16
source d7-sync-config.sh || source d7-sync-config.example.sh
17
cd $DIR_MULTIASSOS
18
ret=$?
19
if [ $ret -ne 0 ] ; then
20
    echo "No config file. Exiting."
21
    exit 2
22
fi
23
# git
24
git checkout master
25
git branch $LOCAL_BRANCH_NAME
26

    
27
### sync drupal tree
28
git pull --rebase
29
git checkout $LOCAL_BRANCH_NAME
30
# Auto solve conflicts: it takes the version from master in case of conflict.
31
git rebase master --strategy-option ours
32

    
33
### sync files
34
if [ -z "$1" ] ; then
35
    exit 0
36
fi
37

    
38
cd $DIR_DRUPAL7_SITES
39

    
40
if [ $1 = default ] ; then
41
    dir_site=$1
42
else
43
    dir_site=assos.centrale-marseille.fr.$1
44
fi
45
mkdir $dir_site
46
cd $dir_site
47
rsync -rltp --progress --delete assos:~/drupal7/sites/$dir_site/* .
48
# Change permissions for Apache
49
# TODO: do something less permissive than 755
50
chmod -R 755 .
51
chmod -R 777 files
52

    
53

    
54
### sync databases
55
now=$(date +%s)
56
sql_file="$1.$now.sql"
57
remote_sql_file="~/tmp/$sql_file"
58
ssh assos "drush @$1 sql-dump > $remote_sql_file"
59
scp assos:$remote_sql_file .
60
mysql -u root -e "DROP DATABASE IF EXISTS $1; CREATE DATABASE $1"
61
ret=$?
62
if [ $ret -ne 0 ] ; then
63
    echo "mysql daemon is not started. Exiting."
64
    ssh assos "rm $remote_sql_file"
65
    exit 1
66
fi
67
mysql -u root $1 < $sql_file
68
rm $sql_file
69
ssh assos "rm $remote_sql_file"
70

    
71
### modify settings.php
72
if [ $1 = 'default' ] ; then
73
    base_url=http://$DOMAIN
74
else
75
    base_url=http://$DOMAIN/$1
76
fi
77
python3 $DIR_MULTIASSOS/other-scripts/modify-settings.py settings.local.php --baseurl $base_url
78
chmod 666 *.php
79

    
80
### Modify sites.php
81
sed "s/\['assos.centrale-marseille.fr[a-b1-9]*/['$DOMAIN/g" < $SITES_PHP > $SITES_PHP.tmp
82
mv $SITES_PHP.tmp $SITES_PHP
83
git commit -a -m "Modify sites.php"
84

    
85
### various drush cmd to finish synchronisation
86
drush status > /dev/null
87
ret=$?
88
if [ $ret -ne 0 ] ; then
89
    echo "drush or site has a problem. Exiting"
90
    exit 1
91
fi
92
drush -y dis piwik
93
drush -y vset maintenace_mode 0
94
drush -y vset error_level 2
95
drush -y dis cas
96
drush -y user-unblock 1
97
drush cc all