components/openstack/neutron/files/neutron-dhcp-agent
branchs11-update
changeset 3028 5e73a3a3f66a
child 1944 56ac2df1785b
equal deleted inserted replaced
3027:3bcf7d43558b 3028:5e73a3a3f66a
       
     1 #!/usr/bin/python2.6
       
     2 
       
     3 # Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
       
     4 #
       
     5 #    Licensed under the Apache License, Version 2.0 (the "License"); you may
       
     6 #    not use this file except in compliance with the License. You may obtain
       
     7 #    a copy of the License at
       
     8 #
       
     9 #         http://www.apache.org/licenses/LICENSE-2.0
       
    10 #
       
    11 #    Unless required by applicable law or agreed to in writing, software
       
    12 #    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
       
    13 #    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
       
    14 #    License for the specific language governing permissions and limitations
       
    15 #    under the License.
       
    16 
       
    17 import os
       
    18 import sys
       
    19 
       
    20 import smf_include
       
    21 
       
    22 
       
    23 def start():
       
    24     # verify paths are valid
       
    25     for f in sys.argv[2:4]:
       
    26         if not os.path.exists(f) or not os.access(f, os.R_OK):
       
    27             print '%s does not exist or is not readable' % f
       
    28             return smf_include.SMF_EXIT_ERR_CONFIG
       
    29 
       
    30     cmd = "/usr/lib/neutron/neutron-dhcp-agent --config-file %s " \
       
    31         "--config-file %s" % tuple(sys.argv[2:4])
       
    32     smf_include.smf_subprocess(cmd)
       
    33 
       
    34 if __name__ == "__main__":
       
    35     os.putenv("LC_ALL", "C")
       
    36     smf_include.smf_main()