You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are using BM in a system where we need to do a backup only for the code files (.ipynb). To do this we use the tarball_blacklist variable:
export BM_TARBALL_BLACKLIST="$(find /var/sds/intelligence/workspaces/administration -type f ! -iname "*.ipynb")"
This works but the problem is when the number of files that match this condition increase a lot. BM returns this error: /usr/share/backup-manager/sanitize.sh: line 91: /bin/env: Argument list too long
/usr/share/backup-manager/actions.sh: line 160: /bin/date: Argument list too long
/usr/share/backup-manager/files.sh: line 163: /bin/grep: Argument list too long
/usr/share/backup-manager/files.sh: line 163: /bin/awk: Argument list too long
Someone knows why or knows an alternative?
Thanks
The text was updated successfully, but these errors were encountered:
Hi,
We are using BM in a system where we need to do a backup only for the code files (.ipynb). To do this we use the tarball_blacklist variable:
export BM_TARBALL_BLACKLIST="$(find /var/sds/intelligence/workspaces/administration -type f ! -iname "*.ipynb")"
This works but the problem is when the number of files that match this condition increase a lot. BM returns this error:
/usr/share/backup-manager/sanitize.sh: line 91: /bin/env: Argument list too long
/usr/share/backup-manager/actions.sh: line 160: /bin/date: Argument list too long
/usr/share/backup-manager/files.sh: line 163: /bin/grep: Argument list too long
/usr/share/backup-manager/files.sh: line 163: /bin/awk: Argument list too long
Someone knows why or knows an alternative?
Thanks
The text was updated successfully, but these errors were encountered: