Skip to content

Commit

Permalink
docs: add sql query to monitor temporary files
Browse files Browse the repository at this point in the history
Signed-off-by: Bruno Friedmann <bruno.friedmann@bareos.com>
  • Loading branch information
bruno-at-bareos authored and pstorz committed Mar 2, 2023
1 parent a7d7776 commit 0c0fbd1
Show file tree
Hide file tree
Showing 2 changed files with 112 additions and 134 deletions.
8 changes: 4 additions & 4 deletions core/src/cats/create_bareos_database.in
Expand Up @@ -3,7 +3,7 @@
# BAREOS® - Backup Archiving REcovery Open Sourced
#
# Copyright (C) 2000-2011 Free Software Foundation Europe e.V.
# Copyright (C) 2013-2022 Bareos GmbH & Co. KG
# Copyright (C) 2013-2023 Bareos GmbH & Co. KG
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of version three of the GNU Affero General Public
Expand Down Expand Up @@ -39,7 +39,7 @@ if [ $# -gt 0 ]; then
handle_database_scripts_command_line_parameter $*
fi
# Below this line no external or additional parameters are supported.
info "Creating of ${db_name} database"
info "Creating database '${db_name}'"

# use SQL_ASCII to be able to put any filename into
# the database even those created with unusual character sets
Expand All @@ -61,9 +61,9 @@ else
fi

if [ ${retval} -eq 0 ]; then
info "Creating of ${db_name} database succeeded."
info "Creation of database '${db_name}' succeeded."
else
error "Creating of ${db_name} database failed."
error "Creation of database '${db_name}' failed."
fi

exit ${retval}

0 comments on commit 0c0fbd1

Please sign in to comment.