From: Sage Weil Date: Fri, 14 Jun 2013 18:21:25 +0000 (-0700) Subject: upstart: start ceph-all on runlevel [2345] X-Git-Tag: v0.65~72 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=7e08ed1bf154f5556b3c4e49f937c1575bf992b8;p=ceph.git 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 --- diff --git a/src/upstart/ceph-all.conf b/src/upstart/ceph-all.conf index d129defad7a1..c0b0edd38717 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]