Fix restart unit condition on radosgw

This change just fixes the restart condition
for the radosgw file used when the certificate
is renewed.

Change-Id: Id3f76cd03c993d013090c7c764d6963a64a1c74f
This commit is contained in:
Francesco Pantano 2020-03-09 14:46:06 +01:00
parent 48e66f4772
commit 165ed10dc1
No known key found for this signature in database
GPG Key ID: 799868C47301D458
1 changed files with 1 additions and 1 deletions

View File

@ -4,6 +4,6 @@
rgw_unit=$(systemctl list-unit-files | awk '/radosgw/ {print $1}')
# Restart the rgw systemd unit
if [ -z "$rgw_unit" ]; then
if [ -n "$rgw_unit" ]; then
systemctl restart "$rgw_unit"
fi