diff options
Diffstat (limited to 'pool.sh')
| -rwxr-xr-x | pool.sh | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -121,6 +121,11 @@ wait_pool() { done } +status() { + refresh + cat "${POOL_STATUS}" +} + list_output() { refresh find "${POOL}" -name "out_*" @@ -214,6 +219,10 @@ case "$CMD" in check_pool resume ;; + "status") + check_pool + status + ;; *) abort "Command $CMD unknown" esac |
