components/openstack/ironic/files/ironic-api
changeset 4460 e5811789e2fb
equal deleted inserted replaced
4459:5a11150c7d2e 4460:e5811789e2fb
       
     1 #!/usr/bin/python2.7
       
     2 
       
     3 # Copyright (c) 2014, 2015, 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     ironic_conf = sys.argv[2]
       
    25 
       
    26     # verify config path is valid
       
    27     if not os.path.exists(ironic_conf) or not os.access(ironic_conf, os.R_OK):
       
    28         print >> sys.stderr, '%s does not exist or is not readable' % \
       
    29             ironic_conf
       
    30         return smf_include.SMF_EXIT_ERR_CONFIG
       
    31 
       
    32     # Initiate ironic-api service
       
    33     cmd_str = "/usr/lib/ironic/ironic-api --config-file %s " \
       
    34         % (ironic_conf)
       
    35     smf_include.smf_subprocess(cmd_str)
       
    36 
       
    37 if __name__ == "__main__":
       
    38     os.putenv("LC_ALL", "C")
       
    39     smf_include.smf_main()