Skip to content

Commit 8a8d279

Browse files
committed
Workaround squashfs-tools issue when RLIMIT_NOFILE is too high
See: #90
1 parent 0d66136 commit 8a8d279

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/runtime.sh

+2
Original file line numberDiff line numberDiff line change
@@ -416,6 +416,8 @@ runtime::create() {
416416

417417
# Extract the container rootfs from the image.
418418
common::log INFO "Extracting squashfs filesystem..." NL
419+
# XXX: https://github.com/NVIDIA/enroot/issues/90
420+
[ $(ulimit -n) -gt $((2**26)) ] && ulimit -n $((2**26))
419421
unsquashfs ${TTY_OFF+-no-progress} -user-xattrs -d "${rootfs}" "${image}" >&2
420422
common::fixperms "${rootfs}"
421423
}

0 commit comments

Comments
 (0)