7 lines
275 B
Plaintext
7 lines
275 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# Purge des paquets bacula (#14933)
|
||
|
if [ -n "$(dpkg -l eole-bacula | grep ^rc)" ];then
|
||
|
apt-get remove --purge -y --force-yes bacula-common bacula-common-sqlite3 bacula-console bacula-director-common bacula-director-sqlite3 bacula-fd bacula-sd eole-bacula
|
||
|
fi
|