Skip to content
Snippets Groups Projects

Db Profiles

1 file
+ 2
1
Compare changes
  • Side-by-side
  • Inline
+ 2
1
@@ -189,7 +189,8 @@
function listBackupedServices(){
(
find "${BACKUP_BASEDIR}" -mindepth 1 -maxdepth 1 -type d -exec basename {} \;
test -n "${ARCHIVE_BASEDIR}" && find "${ARCHIVE_BASEDIR}" -mindepth 1 -maxdepth 1 -type d -exec basename {} \;
test -n "${ARCHIVE_BASEDIR}" && test -d "${ARCHIVE_BASEDIR}" \
&& find "${ARCHIVE_BASEDIR}" -mindepth 1 -maxdepth 1 -type d -exec basename {} \;
) | sort -u
}
Loading