components/openstack/ironic/files/ironic-api
author Matt Keenan <matt.keenan@oracle.com>
Wed, 10 Jun 2015 10:12:11 +0100
changeset 4460 e5811789e2fb
permissions -rw-r--r--
PSARC 2015/172 OpenStack Ironic (OpenStack Bare Metal Provisioning Service) PSARC 2015/070 pecan - Lightweight Python web-framework PSARC 2015/071 PyCA Python Cryptography PSARC 2015/170 OpenStack client for Ironic (Bare Metal Provisioning) PSARC 2015/171 scp - python secure copy PSARC 2015/196 singledispatch - Single-dispatch generic functions for Python PSARC 2015/197 logutils - Set of handlers for standard Python logging library PSARC 2015/198 Support for enumerations in Python 2.6 and 2.7 PSARC 2015/250 paramiko - SSHv2 protocol implementation in Python 20547142 Request to integrate Ironic into userland 17502639 The Python paramiko module should be added to Userland 20172780 The Python module scp should be added to Userland 20180376 The Python module ironicclient should be added to Userland 20182588 The Python module pecan should be added to Userland 20465525 The PyCA cryptography module should be added to Userland 20904396 The Python module singledispatch should be added to Userland 20904413 The Python module logutils should be added to Userland 20917993 The Python enum34 module should be added to Userland

#!/usr/bin/python2.7

# Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
#
#    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
#
#         http://www.apache.org/licenses/LICENSE-2.0
#
#    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.

import os
import sys

import smf_include


def start():
    ironic_conf = sys.argv[2]

    # verify config path is valid
    if not os.path.exists(ironic_conf) or not os.access(ironic_conf, os.R_OK):
        print >> sys.stderr, '%s does not exist or is not readable' % \
            ironic_conf
        return smf_include.SMF_EXIT_ERR_CONFIG

    # Initiate ironic-api service
    cmd_str = "/usr/lib/ironic/ironic-api --config-file %s " \
        % (ironic_conf)
    smf_include.smf_subprocess(cmd_str)

if __name__ == "__main__":
    os.putenv("LC_ALL", "C")
    smf_include.smf_main()