2012-05-02 15:21:36 -07:00
|
|
|
# Copyright (c) 2010, 2011 Nicira, Inc.
|
2010-09-22 22:48:42 -07:00
|
|
|
#
|
2010-08-25 10:26:40 -07:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at:
|
2010-09-22 22:48:42 -07:00
|
|
|
#
|
2010-08-25 10:26:40 -07:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2010-09-22 22:48:42 -07:00
|
|
|
#
|
2010-08-25 10:26:40 -07:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2011-09-26 16:02:26 -07:00
|
|
|
import argparse
|
2010-09-22 21:59:02 -07:00
|
|
|
import signal
|
2010-08-25 10:26:40 -07:00
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
|
|
|
|
import ovs.daemon
|
|
|
|
import ovs.util
|
|
|
|
|
2011-09-16 15:48:33 -07:00
|
|
|
|
|
|
|
def handler(signum, _):
|
2010-09-22 21:59:02 -07:00
|
|
|
raise Exception("Signal handler called with %d" % signum)
|
|
|
|
|
2011-09-16 15:48:33 -07:00
|
|
|
|
2011-09-26 16:02:26 -07:00
|
|
|
def main():
|
2010-09-22 21:59:02 -07:00
|
|
|
|
2017-01-03 20:10:52 +00:00
|
|
|
if sys.platform != 'win32':
|
|
|
|
# signal.SIGHUP does not exist on Windows
|
|
|
|
signal.signal(signal.SIGHUP, handler)
|
2010-09-22 21:59:02 -07:00
|
|
|
|
2011-09-26 16:02:26 -07:00
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
description="Open vSwitch daemonization test program for Python.")
|
|
|
|
parser.add_argument("-b", "--bail", action="store_true",
|
|
|
|
help="Exit with an error after daemonize_start().")
|
2010-08-25 10:26:40 -07:00
|
|
|
|
2011-09-26 16:02:26 -07:00
|
|
|
ovs.daemon.add_args(parser)
|
|
|
|
args = parser.parse_args()
|
|
|
|
ovs.daemon.handle_args(args)
|
2010-08-25 10:26:40 -07:00
|
|
|
|
|
|
|
ovs.daemon.daemonize_start()
|
2011-09-26 16:02:26 -07:00
|
|
|
if args.bail:
|
2010-08-25 10:26:40 -07:00
|
|
|
sys.stderr.write("%s: exiting after daemonize_start() as requested\n"
|
|
|
|
% ovs.util.PROGRAM_NAME)
|
|
|
|
sys.exit(1)
|
|
|
|
ovs.daemon.daemonize_complete()
|
|
|
|
|
|
|
|
while True:
|
|
|
|
time.sleep(1)
|
|
|
|
|
2011-09-16 15:48:33 -07:00
|
|
|
|
2010-08-25 10:26:40 -07:00
|
|
|
if __name__ == '__main__':
|
2010-09-22 21:59:02 -07:00
|
|
|
try:
|
2011-09-26 16:02:26 -07:00
|
|
|
main()
|
2010-09-22 21:59:02 -07:00
|
|
|
except SystemExit:
|
|
|
|
# Let system.exit() calls complete normally
|
|
|
|
raise
|
|
|
|
except:
|
|
|
|
sys.exit(ovs.daemon.RESTART_EXIT_CODE)
|