diff options
author | Sage Weil <sage@inktank.com> | 2012-11-16 17:59:08 -0800 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2012-11-16 17:59:08 -0800 |
commit | 07c831acd56d07f4893772682df1771a96c9cc2a (patch) | |
tree | 56197a03e6d1e74635d30f7083646940d54a6802 | |
parent | b4a769df32ef98650c4c168eb4a9a139a6951ebb (diff) | |
download | ceph-07c831acd56d07f4893772682df1771a96c9cc2a.tar.gz |
upstart: fix limit lines
Two arguments.
Signed-off-by: Sage Weil <sage@inktank.com>
-rw-r--r-- | src/upstart/ceph-mds.conf | 2 | ||||
-rw-r--r-- | src/upstart/ceph-mon.conf | 2 | ||||
-rw-r--r-- | src/upstart/ceph-osd.conf | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/upstart/ceph-mds.conf b/src/upstart/ceph-mds.conf index 8120fd490f2..77841cdccd7 100644 --- a/src/upstart/ceph-mds.conf +++ b/src/upstart/ceph-mds.conf @@ -6,7 +6,7 @@ stop on runlevel [!2345] or stopping ceph-mds-all respawn respawn limit 5 30 -limit nofile 8192 +limit nofile 16384 16384 pre-start script set -e diff --git a/src/upstart/ceph-mon.conf b/src/upstart/ceph-mon.conf index 90cb67b190b..17fd11b6a24 100644 --- a/src/upstart/ceph-mon.conf +++ b/src/upstart/ceph-mon.conf @@ -6,7 +6,7 @@ stop on runlevel [!2345] or stopping ceph-mon-all respawn respawn limit 5 30 -limit nofile 16384 +limit nofile 16384 16384 pre-start script set -e diff --git a/src/upstart/ceph-osd.conf b/src/upstart/ceph-osd.conf index 5f6868769f6..23ca2eb2a23 100644 --- a/src/upstart/ceph-osd.conf +++ b/src/upstart/ceph-osd.conf @@ -6,7 +6,7 @@ stop on runlevel [!2345] or stopping ceph-osd-all respawn respawn limit 5 30 -limit nofile 8192 +limit nofile 16384 16384 pre-start script set -e |