glance-api revision 4623
38dc50ae00a1ea57fa41500d74f4e818747e3cefpquerna#!/usr/bin/python2.7
7d5ac94fda90b837211dadf2585c0fe8c5dc3e5djerenkrantz
c330021bf3f45cbf187fa644781e67f7e470a58awrowe# Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
ecf8d72af432e53e4c0661fb99dfda8061507bfajerenkrantz#
62f7716b14b71603a8004434ca3536902bfb8899wrowe# Licensed under the Apache License, Version 2.0 (the "License"); you may
366616a5cc6212cbf7134ccf877f965d668c6b04wrowe# not use this file except in compliance with the License. You may obtain
366616a5cc6212cbf7134ccf877f965d668c6b04wrowe# a copy of the License at
366616a5cc6212cbf7134ccf877f965d668c6b04wrowe#
366616a5cc6212cbf7134ccf877f965d668c6b04wrowe# http://www.apache.org/licenses/LICENSE-2.0
366616a5cc6212cbf7134ccf877f965d668c6b04wrowe#
366616a5cc6212cbf7134ccf877f965d668c6b04wrowe# Unless required by applicable law or agreed to in writing, software
366616a5cc6212cbf7134ccf877f965d668c6b04wrowe# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
366616a5cc6212cbf7134ccf877f965d668c6b04wrowe# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
366616a5cc6212cbf7134ccf877f965d668c6b04wrowe# License for the specific language governing permissions and limitations
366616a5cc6212cbf7134ccf877f965d668c6b04wrowe# under the License.
366616a5cc6212cbf7134ccf877f965d668c6b04wrowe
366616a5cc6212cbf7134ccf877f965d668c6b04wroweimport os
366616a5cc6212cbf7134ccf877f965d668c6b04wrowe
366616a5cc6212cbf7134ccf877f965d668c6b04wroweimport smf_include
366616a5cc6212cbf7134ccf877f965d668c6b04wrowe
366616a5cc6212cbf7134ccf877f965d668c6b04wrowe
38dc50ae00a1ea57fa41500d74f4e818747e3cefpquernadef start():
366616a5cc6212cbf7134ccf877f965d668c6b04wrowe smf_include.smf_subprocess("/usr/lib/glance/glance-api")
ecf8d72af432e53e4c0661fb99dfda8061507bfajerenkrantz
ecf8d72af432e53e4c0661fb99dfda8061507bfajerenkrantzif __name__ == "__main__":
80464b326874ee15d74742ae39708ec3f2eae1d7wrowe os.putenv("LC_ALL", "C")
80464b326874ee15d74742ae39708ec3f2eae1d7wrowe smf_include.smf_main()
38dc50ae00a1ea57fa41500d74f4e818747e3cefpquerna