Runtasktic is a fantastic command-line task management tool for execution of regular long sequential or parallel tasks.
There are often tasks that we repeat several times in predefined orders. Some of these tasks can take time and we would like to be notified when it ends. This is why this project exists.
Describe your tasks in a YAML file, execute all of them with runtasktic in foreground or background. Configure the notification system, and be notified at the end of each task or when they are all finished.
``` runtasktic 0.4.0 Jones Magloire @Joxit Command-line task management tool for execution of regular long sequential or parallel tasks.
USAGE:
runtasktic
FLAGS: -h, --help Prints help information -V, --version Prints version information
SUBCOMMANDS: completion Generate completion script for your shell dot Export the configuration to a graph (needs graphviz/dot) exec Execute a single command with notification help Prints this message or the help of the given subcommand(s) run Run tasks ```
``` runtasktic-run 0.4.0 Run tasks
USAGE: runtasktic run [FLAGS] [OPTIONS] [--] [config]...
FLAGS: -b, --background Run the task in background -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-s, --start
ARGS:
``` runtasktic-exec 0.4.0 Execute a single command with notification
USAGE: runtasktic exec [FLAGS] [OPTIONS] [command]...
FLAGS: -b, --background Exec the command in background -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-c, --config
ARGS:
``` runtasktic-dot 0.4.0 Export the configuration to a graph (needs graphviz/dot)
USAGE:
runtasktic dot
FLAGS: -h, --help Prints help information -V, --version Prints version information
ARGS:
dot
command is required
```
``` runtasktic-completion 0.4.0 Generate completion script for your shell
USAGE:
runtasktic completion
FLAGS: -h, --help Prints help information -V, --version Prints version information
SUBCOMMANDS:
bash Generates a .bash completion file for the Bourne Again SHell (BASH). Save the output in
/etc/bash_completion.d/runtasktic
or ~/.local/share/bash-completion/completions/runtasktic
elvish Generates a completion file for Elvish
fish Generates a .fish completion file for the Friendly Interactive SHell (fish)
help Prints this message or the help of the given subcommand(s)
zsh Generates a completion file for the Z SHell (ZSH)
```
``yaml
tasks:
a: # The id of the task
commands: # Commands to execute, they must exist with a 0 exit code
- echo Begin a
- sleep 0.5
- echo End a
on_failure: exit #
continueor
exitwhen the tasks ends with a non 0 exit code
b:
commands:
- echo Begin b
- sleep 0.25
- echo End b
depends_on: [ a ] # This task will be executed after a.
notification:
slack: # send notification to slack
url: https://hooks.slack.com/services/XXXXX/XXXXX/XXXXX # The slack server url
channel: '#channel' # channel to send message
emoji: ':rocket:' # emoji to use (optional)
username: runtasktic # the username to use, default is runtasktic.
print:
output: stderr # print notification on
stdout,
stedrr,
noneor
/custom/path
when: always #
always,
task-end,
endor
neverwhen should I send notification
messages:
task_end: Task {task.id} ended with status code {task.status_code} # Availables templates are {task.id}, {task.short_cmd}, {task.full_cmd}, {task.status_code}, {hostname}, {env.*} for environment variables
all_task_end: All tasks ended. Got {resume.success} success and {resume.failures} failure. # Availables templates are {resulme.success}, {resume.failures}, {hostname}, {env.*} for environment variables
task_failed: Tasks ended prematurely. Got {resume.success} success and {resume.failures} failure. Contains one critical failure. # Availables templates are {resulme.success}, {resume.failures}, {hostname}, {env.*} for environment variables. Triggered when
on_failure: exit` is used.
concurrency: 2 # how many task can run simultaneously
workingdir: /custom/directory # Where is the workind directory, default is where your are using runtasktic
stdout: none # none
, /custom/path
where should I save standard logs
stderr: /var/log/runtasktic.err # none
, /custom/path
where should I save error logs
onfailure: continue # continue
or exit
default behaviour when a task fail, default is continue
```