Projet

Général

Profil

Paste
Télécharger (525 octets) Statistiques
| Branche: | Révision:

root / bin / d7-all-update-settings.sh @ f4462ddf

1 469b9d6d Julien Enselme
#!/bin/sh
2
3 06e9d071 Assos Assos
. /home/assos/bin/script-config.sh
4
. /home/assos/bin/scripts-utils.sh
5 469b9d6d Julien Enselme
6
# This script updates all drupal 7 settings.php according to a new template. Site informations located in settings.local.php are left intact.
7
8
for settings in $(find $d7_dir_sites -mindepth 2 -maxdepth 2 -name settings.php) ; do
9
10 65ce03da Julien Enselme
    # We go into the settings.php directory.
11 683f57f9 Julien Enselme
    settings_dir=$(give_dir $settings)
12 469b9d6d Julien Enselme
    cd $settings_dir
13
14
    chmod 700 $settings
15
    rm $settings
16
17
    cp $d7_settings settings.php
18
    chmod 400 settings.php
19
done