#!/bin/sh
#
# Copyright (C) 2000-2023 Kern Sibbald
# License: BSD 2-Clause; see file LICENSE-FOSS
#
# shell script to create Bacula SQLite tables

bindir=/usr/local/bin
PATH=$bindir:$PATH
cd /var/bacula
db_name=bacula

sqlite3 $* ${db_name}.db <<END-OF-DATA
END-OF-DATA
exit 0
