1import { pathDownJoin } from '../../serverF/pathF.mts'2import { ptDiskDir } from '../../serverF/ptDiskF/ptDiskF.mts'4export const getDbBackupDir = ({dbName}: {dbName: string}) => {5 return pathDownJoin(ptDiskDir, 'backups', dbName)6}8export const remoteWipBackupDir = '/var/lib/postgresql/data'10export const runPgOnKlust = true