]> git.pld-linux.org Git - packages/ceph.git/commitdiff
'cephtctl' scrip ported to PLD
authorJacek Konieczny <j.konieczny@eggsoft.pl>
Tue, 5 May 2015 08:51:13 +0000 (10:51 +0200)
committerJacek Konieczny <j.konieczny@eggsoft.pl>
Tue, 12 May 2015 13:19:03 +0000 (15:19 +0200)
cephctl

diff --git a/cephctl b/cephctl
index e60dec6b89a75556bcb1d2218908d8bc29ba3ef8..9bd4d908e13a97b428239fa5092925a22690ec14 100644 (file)
--- a/cephctl
+++ b/cephctl
@@ -1,22 +1,11 @@
 #! /bin/bash
 
-### BEGIN INIT INFO
-# Provides:       ceph ceph-mon ceph-osd
-# Required-Start: $network $remote_fs
-# Required-Stop:  $network $remote_fs
-# Should-Start: network-remotefs
-# Should-Stop: network-remotefs
-# Default-Start:  3 5
-# Default-Stop:   0 1 2 6
-# Short-Description: Ceph is a distributed object, and block, storage platform
-# Description:    Ceph is a distributed object, block, and file storage platform
-### END INIT INFO
-
-SYSTEMD_NO_WRAP=1 . /etc/rc.status
-rc_reset
+# It seems this was designed as /etc/init.d/ceph script for controlling the systemd
+# units on SuSE, made into 'cephctl' for PLD
 
 action=$1 ; shift
-cluster="ceph"
+[ -f /etc/sysconfig/ceph ] && . /etc/sysconfig/ceph
+cluster=${CLUSTER:-ceph}
 config=$1 ; shift
 
 # Shared variables by many actions
@@ -30,8 +19,10 @@ losd=`ls ${dir_osd} | grep ${cluster}`
 fi
 prefix="${cluster}-"
 
+RC=0
+
 if test -n "$config" ; then
-       systemctl "${action}" "ceph-mon@${config}.service"
+       systemctl "${action}" "ceph-mon@${config}.service" || RC=1
 else
        case $action in
     start | stop | status | enable | disable | restart | is-active | is-failed | show | kill | reset-failed  )
@@ -39,22 +30,17 @@ else
         if test -n ${lmon} ; then
             for s in ${lmon#=${prefix}} ; do
                 systemctl "${action}" ceph-mon@${s#$prefix}.service
-                rc_check
+               [ $? -eq 0 ] || RC=1
                 ((++n))
             done
         fi
         if test -n ${lmon} ; then
             for s in ${losd#=${prefix}} ; do
                 systemctl "${action}" ceph-osd@${s#$prefix}.service
-                rc_check
+               [ $? -eq 0 ] || RC=1
                 ((++n))
             done
         fi
-        if test $n -gt 0 ; then
-                       rc_status
-               else
-                       rc_status -u
-               fi
     ;;
        *)
                echo "Invalid paramter : $action"
@@ -62,5 +48,4 @@ else
        ;;
        esac
 fi
-rc_exit
-
+exit $RC
This page took 0.283435 seconds and 4 git commands to generate.