6 lines
112 B
Bash
6 lines
112 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
echo "==> [vaultwarden] Cleaning up SQLite backup"
|
|
rm -f /mnt/staging/db.sqlite3
|