#!/usr/bin/env sh if [[ -n "$DO_FTP_BACKUP" ]]; then sh /usr/local/etc/urbackup/ftp_backup.sh || exit 1 fi if [[ -n "$DO_MYSQL_BACKUP" ]]; then sh /usr/local/etc/urbackup/mysql_backup.sh || exit 1 fi if [[ -n "$DO_POSTGRES_BACKUP" ]]; then sh /usr/local/etc/urbackup/postgres_backup.sh || exit 1 fi