Add status command

This commit is contained in:
Loic Guegan 2021-08-22 10:28:30 +02:00
parent 8fe2a1fda4
commit b9c8b09c1e
2 changed files with 10 additions and 0 deletions

View file

@ -14,6 +14,7 @@
- Processes in a pool can be paused with `./pool.sh pause <poolname>` - Processes in a pool can be paused with `./pool.sh pause <poolname>`
- Processes in a pool can be resumed with `./pool.sh resume <poolname>` - Processes in a pool can be resumed with `./pool.sh resume <poolname>`
- Available pools can be retrieve with `./pool.sh ls` - Available pools can be retrieve with `./pool.sh ls`
- The status of a pool can be seen with `./pool.sh status <poolname>`
- All the processes output file can be retrieve with `./pool.sh ls-output <poolname>` - All the processes output file can be retrieve with `./pool.sh ls-output <poolname>`
**Final quote:** No checks are performed the arguments. Thus, be sure to use the right ones. The default configuration requires access to the `/tmp` directory and uses name conventions which may clash with the existing content of `/tmp` if you are very unlucky. If in this the case, you can edit `pool.sh` to avoid those clashes. **Final quote:** No checks are performed the arguments. Thus, be sure to use the right ones. The default configuration requires access to the `/tmp` directory and uses name conventions which may clash with the existing content of `/tmp` if you are very unlucky. If in this the case, you can edit `pool.sh` to avoid those clashes.

View file

@ -121,6 +121,11 @@ wait_pool() {
done done
} }
status() {
refresh
cat "${POOL_STATUS}"
}
list_output() { list_output() {
refresh refresh
find "${POOL}" -name "out_*" find "${POOL}" -name "out_*"
@ -214,6 +219,10 @@ case "$CMD" in
check_pool check_pool
resume resume
;; ;;
"status")
check_pool
status
;;
*) *)
abort "Command $CMD unknown" abort "Command $CMD unknown"
esac esac