Debug
This commit is contained in:
parent
b9c8b09c1e
commit
ea2cab7326
1 changed files with 3 additions and 2 deletions
5
pool.sh
5
pool.sh
|
@ -27,6 +27,7 @@ write_status() {
|
|||
echo "nproc=${nproc}" >> "$POOL_STATUS"
|
||||
echo "procs=\"${procs}\"" >> "$POOL_STATUS"
|
||||
echo "lastprocid=$lastprocid" >> "$POOL_STATUS"
|
||||
echo "createdat=$createdat" >> "$POOL_STATUS"
|
||||
}
|
||||
|
||||
create_properties() {
|
||||
|
@ -58,6 +59,7 @@ create() {
|
|||
nproc=0
|
||||
procs=""
|
||||
lastprocid=0
|
||||
createdat=$(date +"%s")
|
||||
write_status
|
||||
}
|
||||
|
||||
|
@ -109,7 +111,7 @@ cat_output() {
|
|||
}
|
||||
|
||||
list_pool() {
|
||||
find "${TMPDIR}" -name "${POOL_FORMAT}*" -exec basename {} \; 2>/dev/null | sed "s/${POOL_FORMAT}//g"
|
||||
find "${TMPDIR}" -maxdepth 1 -name "${POOL_FORMAT}*" -type d -exec basename {} \; 2>/dev/null | sed "s/${POOL_FORMAT}//g"
|
||||
}
|
||||
|
||||
wait_pool() {
|
||||
|
@ -190,7 +192,6 @@ case "$CMD" in
|
|||
list_output
|
||||
;;
|
||||
"ls")
|
||||
check_pool
|
||||
list_pool
|
||||
;;
|
||||
"wait")
|
||||
|
|
Loading…
Add table
Reference in a new issue