11 lines
234 B
Python
Executable File
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)
|