Update shebang and date to POSIX format for working on FreeBSD (not

tested on Linux)
This commit is contained in:
Gérald Niel 2018-03-19 22:06:21 +01:00
parent 0960af624e
commit 1069d3a4dc

View File

@ -1,10 +1,10 @@
#!/bin/bash
#!/usr/bin/env bash
# Strict mode
set -e
# Backup database
SQL_BACKUP_PATH="/var/www/peertube/backup/sql-peertube_prod-$(date -Im).bak"
SQL_BACKUP_PATH="/var/www/peertube/backup/sql-peertube_prod-$(date +\"%Y%m%d-%h%m\").bak"
mkdir -p /var/www/peertube/backup
pg_dump -U peertube -W -h localhost -F c peertube_prod -f "$SQL_BACKUP_PATH"