diff options
author | Lennart Poettering <lennart@poettering.net> | 2018-11-15 09:50:42 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2018-11-28 17:08:27 +0100 |
commit | 09dad04c49cae3ad2b319c9b4e7773fedd34309a (patch) | |
tree | ee23444fa612a51b12e3cb6868ce28fccc8647fc /meson.build | |
parent | 230450d4e4f1f5fc9fa4295ed9185eea5b6ea16e (diff) | |
download | systemd-09dad04c49cae3ad2b319c9b4e7773fedd34309a.tar.gz |
meson: let's bump RLIMIT_NOFILE hard limit to 512K
Prompted by:
https://lists.freedesktop.org/archives/systemd-devel/2018-October/041578.html
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 86e1c8932b..a46090ad47 100644 --- a/meson.build +++ b/meson.build @@ -75,7 +75,7 @@ conf.set10('HAVE_SYSV_COMPAT', sysvinit_path != '' and sysvrcnd_path != '', conf.set10('BUMP_PROC_SYS_FS_FILE_MAX', get_option('bump-proc-sys-fs-file-max')) conf.set10('BUMP_PROC_SYS_FS_NR_OPEN', get_option('bump-proc-sys-fs-nr-open')) -conf.set('HIGH_RLIMIT_NOFILE', 256*1024) +conf.set('HIGH_RLIMIT_NOFILE', 512*1024) # join_paths ignore the preceding arguments if an absolute component is # encountered, so this should canonicalize various paths when they are |