diff options
author | Sage Weil <sage@inktank.com> | 2013-06-14 11:21:25 -0700 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2013-06-14 11:21:38 -0700 |
commit | 41a15a63349abc5f3e1c0b8de8fcc543e2567035 (patch) | |
tree | f99392d8bfa5a50581b14679abaec02713c9bc4a | |
parent | 60e4bb0acb41febb75c866646c7102e9a25782f7 (diff) | |
download | ceph-41a15a63349abc5f3e1c0b8de8fcc543e2567035.tar.gz |
upstart: start ceph-all on runlevel [2345]
Starting when only one network interface has started breaks machines with
multiple nics in very problematic ways.
There may be an earlier trigger that we can use for cases where other
services on the local machine depend on ceph, but for now this is better
than the existing behavior.
See #5248
Signed-off-by: Sage Weil <sage@inktank.com>
(cherry picked from commit 7e08ed1bf154f5556b3c4e49f937c1575bf992b8)
-rw-r--r-- | src/upstart/ceph-all.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/upstart/ceph-all.conf b/src/upstart/ceph-all.conf index d129defad7a..c0b0edd3871 100644 --- a/src/upstart/ceph-all.conf +++ b/src/upstart/ceph-all.conf @@ -1,4 +1,4 @@ description "Ceph" -start on (local-filesystems and net-device-up IFACE!=lo) +start on runlevel [2345] stop on runlevel [!2345] |