From d3e53856f323d706913c0bc6d8214c9150ea04e1 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Mon, 23 Oct 2017 18:45:57 +0200 Subject: [PATCH] Make out of space on partition fatal --- bacula/src/stored/block.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bacula/src/stored/block.c b/bacula/src/stored/block.c index 06c1320a8d..5134b953d9 100644 --- a/bacula/src/stored/block.c +++ b/bacula/src/stored/block.c @@ -302,7 +302,7 @@ bool DCR::write_block_to_dev() dev->update_freespace(); if (dev->is_freespace_ok() && dev->free_space < dev->min_free_space) { dev->set_nospace(); - Jmsg(jcr, M_WARNING, 0, _("Out of freespace caused End of Volume \"%s\" at %s on device %s. Write of %u bytes got %d.\n"), + Jmsg(jcr, M_FATAL, 0, _("Out of freespace caused End of Volume \"%s\" at %s on device %s. Write of %u bytes got %d.\n"), dev->getVolCatName(), dev->print_addr(ed1, sizeof(ed1)), dev->print_name(), wlen, stat); } else { -- 2.39.5