initial code repo
[stor4nfv.git] / src / ceph / src / upstart / ceph-osd.conf
diff --git a/src/ceph/src/upstart/ceph-osd.conf b/src/ceph/src/upstart/ceph-osd.conf
new file mode 100644 (file)
index 0000000..60b7b82
--- /dev/null
@@ -0,0 +1,29 @@
+description "Ceph OSD"
+
+start on ceph-osd
+stop on runlevel [!2345] or stopping ceph-osd-all
+
+respawn
+respawn limit 3 1800
+
+limit nofile 327680 327680
+
+pre-start script
+    set -e
+    test -x /usr/bin/ceph-osd || { stop; exit 0; }
+    test -d "/var/lib/ceph/osd/${cluster:-ceph}-$id" || { stop; exit 0; }
+
+    install -d -m0770 -o ceph -g ceph /var/run/ceph
+
+    /usr/lib/ceph/ceph-osd-prestart.sh --cluster="${cluster:-ceph}" -i "$id"
+end script
+
+instance ${cluster:-ceph}/$id
+export cluster
+export id
+
+script
+    test -f /etc/default/ceph && . /etc/default/ceph
+    export TCMALLOC_MAX_TOTAL_THREAD_CACHE_BYTES
+    exec /usr/bin/ceph-osd --cluster="${cluster:-ceph}" -i "$id" -f --setuser ceph --setgroup ceph
+end script