Projet

Général

Profil

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

root / bin / flush-full-databases-backups.sh @ 8550e097

1
#!/bin/sh
2

    
3
. /home/assos/bin/scripts-config.sh
4

    
5
# ARGS: Drupal version
6

    
7
cd "${dir_full_backup}/$1"
8

    
9
for dir in $(ls) ; do
10
    cd "${dir}"
11
    flush-files.sh "${db_full_backup_number}" "${email_multi_assos}"
12
    cd -
13
done