Skip to content

Instantly share code, notes, and snippets.

@mccun934
Created February 8, 2018 15:42
Show Gist options
  • Save mccun934/bcb7110fea3720e30cde98b73ab8447d to your computer and use it in GitHub Desktop.
Save mccun934/bcb7110fea3720e30cde98b73ab8447d to your computer and use it in GitHub Desktop.
Common task cleanup commands
# Delete all paused
foreman-rake foreman_tasks:cleanup TASK_SEARCH='label ~ *' AFTER='0d' STATES=paused VERBOSE=true
# Delete all stopped
foreman-rake foreman_tasks:cleanup TASK_SEARCH='label ~ *' AFTER='0d' STATES=stopped VERBOSE=true
# Delete everything
foreman-rake foreman_tasks:cleanup TASK_SEARCH='label ~ *' AFTER='0d' STATES=running,stopped,paused VERBOSE=true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment