Add capacity check
This commit is contained in:
parent
ea2cab7326
commit
5926688efe
1 changed files with 1 additions and 0 deletions
1
pool.sh
1
pool.sh
|
@ -53,6 +53,7 @@ getp() {
|
||||||
|
|
||||||
create() {
|
create() {
|
||||||
[ -d "$POOL" ] && abort "Pool \"$POOL\" already exists" || :
|
[ -d "$POOL" ] && abort "Pool \"$POOL\" already exists" || :
|
||||||
|
[ ! "$1" -gt 0 ] && abort "Invalid pool capacity $1" || :
|
||||||
mkdir -p "$POOL"
|
mkdir -p "$POOL"
|
||||||
# Write pool status
|
# Write pool status
|
||||||
maxproc=$1
|
maxproc=$1
|
||||||
|
|
Loading…
Add table
Reference in a new issue