7 lines
151 B
Bash
Executable File
7 lines
151 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Suppression des anciens fichiers bacula (#14933)
|
|
if [ -d /etc/bacula/baculafichiers.d ];then
|
|
rm -rf /etc/bacula/baculafichiers.d
|
|
fi
|