mirror of
https://github.com/ceph/ceph
synced 2025-01-26 13:06:29 +00:00
2f193fb931
Signed-off-by: Sage Weil <sage@inktank.com>
6 lines
109 B
Bash
6 lines
109 B
Bash
#!/bin/sh
|
|
|
|
[ -x /sbin/stop ] && stop ceph-all || :
|
|
[ -x /usr/sbin/service ] && service ceph stop || :
|
|
|
|
exit 0 |