Skip to content

Instantly share code, notes, and snippets.

@inode64
Created August 23, 2021 09:56
Show Gist options
  • Save inode64/5f78bbbfc337887ad599a5d7a034573e to your computer and use it in GitHub Desktop.
Save inode64/5f78bbbfc337887ad599a5d7a034573e to your computer and use it in GitHub Desktop.
Cancel all waiting jobs in bareos or bacula
#!/bin/bash
for fn in $(echo "s dir" | bconsole | awk '/is waiting/ {print $1}' | sort -r); do
echo "cancel jobid=$fn"
done | bconsole
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment