diff options
author | James Page <james.page@ubuntu.com> | 2013-05-20 10:26:06 +0100 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2013-06-14 14:12:16 -0700 |
commit | 3f8b3cf1d4042ae6bb64a840ff19f859e6ce6dc2 (patch) | |
tree | 37455ac1a7b84bad8cefdfcbdafc570256f0fbe2 | |
parent | 0b9b8368aec049bfdd4cf72b481f3a4aa8cb031e (diff) | |
download | ceph-3f8b3cf1d4042ae6bb64a840ff19f859e6ce6dc2.tar.gz |
Remove stop on from upstart tasks
Upstart tasks don't have to concept of 'stop on' as they
are not long running.
(cherry picked from commit 17f6fccabc262b9a6d59455c524b550e77cd0fe3)
-rw-r--r-- | src/upstart/ceph-create-keys.conf | 1 | ||||
-rw-r--r-- | src/upstart/ceph-mds-all-starter.conf | 1 | ||||
-rw-r--r-- | src/upstart/ceph-mon-all-starter.conf | 1 | ||||
-rw-r--r-- | src/upstart/ceph-osd-all-starter.conf | 1 | ||||
-rw-r--r-- | src/upstart/radosgw-all-starter.conf | 1 |
5 files changed, 0 insertions, 5 deletions
diff --git a/src/upstart/ceph-create-keys.conf b/src/upstart/ceph-create-keys.conf index 6fb4581852f..de215d98ff3 100644 --- a/src/upstart/ceph-create-keys.conf +++ b/src/upstart/ceph-create-keys.conf @@ -1,7 +1,6 @@ description "Create Ceph client.admin key when possible" start on started ceph-mon -stop on runlevel [!2345] task diff --git a/src/upstart/ceph-mds-all-starter.conf b/src/upstart/ceph-mds-all-starter.conf index f1243e208f0..e7fbf855ad4 100644 --- a/src/upstart/ceph-mds-all-starter.conf +++ b/src/upstart/ceph-mds-all-starter.conf @@ -1,7 +1,6 @@ description "Ceph MDS (start all instances)" start on starting ceph-mds-all -stop on runlevel [!2345] or stopping ceph-mds-all task diff --git a/src/upstart/ceph-mon-all-starter.conf b/src/upstart/ceph-mon-all-starter.conf index 1a69d676aa2..9f5574f5baa 100644 --- a/src/upstart/ceph-mon-all-starter.conf +++ b/src/upstart/ceph-mon-all-starter.conf @@ -1,7 +1,6 @@ description "Ceph MON (start all instances)" start on starting ceph-mon-all -stop on runlevel [!2345] or stopping ceph-mon-all task diff --git a/src/upstart/ceph-osd-all-starter.conf b/src/upstart/ceph-osd-all-starter.conf index 42ec80c2ffa..0311716cdb4 100644 --- a/src/upstart/ceph-osd-all-starter.conf +++ b/src/upstart/ceph-osd-all-starter.conf @@ -1,7 +1,6 @@ description "Ceph OSD (start all instances)" start on starting ceph-osd-all -stop on runlevel [!2345] or stopping ceph-osd-all task diff --git a/src/upstart/radosgw-all-starter.conf b/src/upstart/radosgw-all-starter.conf index 89cff479c52..15bbce28b23 100644 --- a/src/upstart/radosgw-all-starter.conf +++ b/src/upstart/radosgw-all-starter.conf @@ -1,7 +1,6 @@ description "Ceph radosgw (task to start all instances)" start on starting radosgw-all -stop on runlevel [!2345] or stopping radosgw-all task |