]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/dird/ua_purge.c
Fix #1467 about ActionOnPurge with Devices having space
[bacula/bacula] / bacula / src / dird / ua_purge.c
index e63cf1197a866107e63ce41ef205adc854244041..dc101f15002f953d8e51763a65b6d45415f55e55 100644 (file)
@@ -283,6 +283,10 @@ void purge_files_from_jobs(UAContext *ua, char *jobs)
    db_sql_query(ua->db, query.c_str(), NULL, (void *)NULL);
    Dmsg1(050, "Delete File sql=%s\n", query.c_str());
 
+   Mmsg(query, "DELETE FROM BaseFiles WHERE JobId IN (%s)", jobs);
+   db_sql_query(ua->db, query.c_str(), NULL, (void *)NULL);
+   Dmsg1(050, "Delete BaseFiles sql=%s\n", query.c_str());
+
    /*
     * Now mark Job as having files purged. This is necessary to
     * avoid having too many Jobs to process in future prunings. If
@@ -573,6 +577,7 @@ static BSOCK *open_sd_bsock(UAContext *ua)
  */
 bool mark_media_purged(UAContext *ua, MEDIA_DBR *mr)
 {
+   char dev_name[MAX_NAME_LENGTH];
    JCR *jcr = ua->jcr;
    if (strcmp(mr->VolStatus, "Append") == 0 ||
        strcmp(mr->VolStatus, "Full")   == 0 ||
@@ -585,16 +590,21 @@ bool mark_media_purged(UAContext *ua, MEDIA_DBR *mr)
 
       if (mr->ActionOnPurge > 0) {
          /* Send the command to truncate the volume after purge. If this feature
-          * is disabled for the specific device, this will be a no-op. */
+          * is disabled for the specific device, this will be a no-op.
+          */
          BSOCK *sd;
          if ((sd=open_sd_bsock(ua)) != NULL) {
+            bstrncpy(dev_name, ua->jcr->wstore->dev_name(), sizeof(dev_name));
+            bash_spaces(dev_name);
+            bash_spaces(mr->VolumeName);
             sd->fsend("action_on_purge %s vol=%s action=%d",
                       ua->jcr->wstore->dev_name(),
                      mr->VolumeName,
                      mr->ActionOnPurge);
-
-            while (sd->recv() >= 0)
+            unbash_spaces(mr->VolumeName);
+            while (sd->recv() >= 0) {
                ua->send_msg("%s", sd->msg);
+            }
 
             sd->signal(BNET_TERMINATE);
             sd->close();