diff options
| author | 2026-03-14 14:21:07 +0100 | |
|---|---|---|
| committer | 2026-03-14 14:21:07 +0100 | |
| commit | f1bdb50d024198afe76c97aa4fc22d08c0fb86ce (patch) | |
| tree | 5194e58fed3507957b489be107b9a41a043b1c36 | |
| parent | Updated RELEASE_NOTES. (diff) | |
| download | snac2-f1bdb50d024198afe76c97aa4fc22d08c0fb86ce.tar.gz snac2-f1bdb50d024198afe76c97aa4fc22d08c0fb86ce.tar.xz snac2-f1bdb50d024198afe76c97aa4fc22d08c0fb86ce.zip | |
Call ulimit -n to increase file descriptors in examples/snac_netbsd.
| -rw-r--r-- | examples/snac_netbsd | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/snac_netbsd b/examples/snac_netbsd index 06991b1..19c221a 100644 --- a/examples/snac_netbsd +++ b/examples/snac_netbsd | |||
| @@ -31,4 +31,8 @@ snac_precmd() { | |||
| 31 | } | 31 | } |
| 32 | 32 | ||
| 33 | load_rc_config $name | 33 | load_rc_config $name |
| 34 | run_rc_command "$1" \ No newline at end of file | 34 | |
| 35 | # increase the number of file descriptors | ||
| 36 | ulimit -n 1024 | ||
| 37 | |||
| 38 | run_rc_command "$1" | ||