diff options
author | Yehuda Sadeh <yehuda@redhat.com> | 2015-03-19 04:55:24 +0100 |
---|---|---|
committer | Sage Weil <sage@redhat.com> | 2015-03-19 17:18:25 +0100 |
commit | f96d58bd88b29503bd1c4725ac871efebaf7994d (patch) | |
tree | 3657b75dc68d2e2534b27c94bb5a5041b5920440 /src/init-radosgw.sysv | |
parent | Merge pull request #4064 from dachary/wip-10488-jerasure-idempotent (diff) | |
download | ceph-f96d58bd88b29503bd1c4725ac871efebaf7994d.tar.xz ceph-f96d58bd88b29503bd1c4725ac871efebaf7994d.zip |
init-radosgw*: don't require rgw_socket_path to be defined
Fixes: #11159
Backport: hammer, firefly
Scripts required rgw_socket_path to exist in order to start radosgw.
This is not needed.
Reported-by: Dan Mick <dmick@redhat.com>
Signed-off-by: Yehuda Sadeh <yehuda@redhat.com>
(cherry picked from commit 6823bcdcd0ce72cd223e809291f46d82da76115c)
Diffstat (limited to '')
-rw-r--r-- | src/init-radosgw.sysv | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/init-radosgw.sysv b/src/init-radosgw.sysv index e210b79144e..f4eda14e90f 100644 --- a/src/init-radosgw.sysv +++ b/src/init-radosgw.sysv @@ -59,12 +59,6 @@ case "$1" in continue fi - # is the socket defined? if it's not, this instance shouldn't run as a daemon. - rgw_socket=`$RADOSGW -n $name --show-config-value rgw_socket_path` - if [ -z "$rgw_socket" ]; then - continue - fi - # mapped to this host? host=`ceph-conf -n $name host` hostname=`hostname -s` |