Files
charm-keystone/actions/resume
2015-08-06 13:52:27 +02:00

11 lines
234 B
Python
Executable File

#!/usr/bin/python
import sys
from charmhelpers.core import hookenv, host
if __name__ == "__main__":
if not host.service_resume("keystone"):
hookenv.action_fail("Failed to resume service keystone.")
sys.exit(-1)