Skip to content
Snippets Groups Projects
Commit 3753b2cb authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

ganeti-watcher: Don't run if paused


Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
Reviewed-by: default avatarIustin Pop <iustin@google.com>
parent 95b2e626
No related branches found
No related tags found
No related merge requests found
......@@ -31,6 +31,7 @@ import os
import sys
import time
import logging
import errno
from optparse import OptionParser
from ganeti import utils
......@@ -70,6 +71,13 @@ def Indent(s, prefix='| '):
return "%s%s\n" % (prefix, ('\n' + prefix).join(s.splitlines()))
def ShouldPause():
"""Check whether we should pause.
"""
return bool(utils.ReadWatcherPauseFile(constants.WATCHER_PAUSEFILE))
def StartMaster():
"""Try to start the master daemon.
......@@ -476,6 +484,10 @@ def main():
utils.SetupLogging(constants.LOG_WATCHER, debug=options.debug,
stderr_logging=options.debug)
if ShouldPause():
logging.debug("Pause has been set, exiting")
sys.exit(constants.EXIT_SUCCESS)
update_file = False
try:
# on master or not, try to start the node dameon
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment