added config lines to Inbucket and bugjes opgelost in deployment scripts

This commit is contained in:
Niels Kunis 2025-02-16 15:15:56 +01:00
parent 201af045c9
commit 8cfa7d2b3d
3 changed files with 14 additions and 2 deletions

View file

@ -13,6 +13,11 @@ if [ -z "$username" ] || [ -z "$host" ]
exit 1
fi
if [ ! -d "$output_path" ]; then
echo "Output directory $output_path does not exist!"
exit 1
fi
# Create a temporary directory
temp=$(mktemp -d)