Updated restart_pg function

This commit is contained in:
Junaid Ali 2016-04-27 20:54:49 -07:00
parent 721c1d27ba
commit 02ace9b018
1 changed files with 3 additions and 4 deletions

View File

@ -157,10 +157,9 @@ def restart_pg():
else:
if service_start('libvirt-bin'):
time.sleep(3)
if not service_running('plumgrid'):
if not service_start('plumgrid'):
raise ValueError("plumgrid service couldn't be started"
)
if not service_running('plumgrid') \
and not service_start('plumgrid'):
raise ValueError("plumgrid service couldn't be started")
else:
raise ValueError("libvirt-bin service couldn't be started")
status_set('active', 'Unit is ready')