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