]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
upstart: Start mds,mon,radosgw after a reboot.
authorTommi Virtanen <tv@inktank.com>
Tue, 11 Sep 2012 23:28:41 +0000 (16:28 -0700)
committerSage Weil <sage@inktank.com>
Tue, 11 Sep 2012 23:58:39 +0000 (16:58 -0700)
They had no "start on" stanzas, so they didn't get started earlier.

src/upstart/ceph-mds-all.conf
src/upstart/ceph-mon-all.conf
src/upstart/radosgw-all.conf

index 35c2e06e66403001b73a52da01d7ed2aeb044116..0b58f5f8a60a76d920987fb76084ace99426ebab 100644 (file)
@@ -1 +1,4 @@
 description "Ceph MDS (all instances)"
+
+start on (local-filesystems and net-device-up IFACE!=lo)
+stop on runlevel [!2345]
index 391cc5984700b3a002b8a151efff00fd95af1fd2..006f2f20745059a16847288f0d2897731eb94578 100644 (file)
@@ -1 +1,4 @@
 description "Ceph monitor (all instances)"
+
+start on (local-filesystems and net-device-up IFACE!=lo)
+stop on runlevel [!2345]
index b5966d3d3ddf053029a54822a3e03d9d0a22e58a..2f2e27f9d51b5a9f53d04b2074af03d51fc99413 100644 (file)
@@ -1 +1,4 @@
 description "Ceph radosgw (all instances)"
+
+start on (local-filesystems and net-device-up IFACE!=lo)
+stop on runlevel [!2345]