mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-05 20:44:30 +00:00
26 lines
526 B
Plaintext
26 lines
526 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# koji resubmit
|
|
|
|
> Retry a cancelled or failed task, using the same parameter as the original task.
|
|
> More information: <https://docs.pagure.org/koji/>.
|
|
|
|
- Resubmit a task:
|
|
|
|
`koji resubmit {{task_id}}`
|
|
|
|
- Resubmit a task without waiting for it to finish:
|
|
|
|
`koji resubmit {{task_id}} --nowait`
|
|
|
|
- Resubmit a task without printing task information:
|
|
|
|
`koji resubmit {{task_id}} --quiet`
|
|
|
|
- Display help:
|
|
|
|
`koji resubmit {{[-h|--help]}}`
|