10 lines
233 B
Python
Executable File
10 lines
233 B
Python
Executable File
#!/usr/bin/python
|
|
import sys
|
|
|
|
from charmhelpers.core import hookenv, host
|
|
|
|
if __name__ == "__main__":
|
|
if not host.service_pause("mysql"):
|
|
hookenv.action_fail("Failed to pause MySQL service.")
|
|
sys.exit(-1)
|