Projet

Général

Profil

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

root / bin / flush-full-databases-backups.sh @ 15ed27d8

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 -n "${db_full_backup_number}" -m "${email_multi_assos}"
12
    cd -
13
done