diff options
Diffstat (limited to 'sh')
-rw-r--r-- | sh/openrc-run.sh.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sh/openrc-run.sh.in b/sh/openrc-run.sh.in index 7e9064c2..06f46908 100644 --- a/sh/openrc-run.sh.in +++ b/sh/openrc-run.sh.in @@ -254,8 +254,11 @@ fi for _cmd; do if [ "$_cmd" != status -a "$_cmd" != describe ]; then # Apply any ulimit defined - [ -n "${rc_ulimit:-$RC_ULIMIT}" ] && \ - ulimit ${rc_ulimit:-$RC_ULIMIT} + if [ -n "${rc_ulimit:-$RC_ULIMIT}" ]; then + if ! ulimit ${rc_ulimit:-$RC_ULIMIT}; then + eerror "${RC_SVCNAME: unable to apply RC_ULIMIT settings" + fi + fi # Apply cgroups settings if defined if [ "$(command -v cgroup_add_service)" = "cgroup_add_service" ] then |