chore: Remove bin/marconi-self-host

This directory is no longer necessary, and the script is out of
date. marconi/bin is the new home for this sort of stuff.

Change-Id: I67b95dad314389d567d623521b69df9093c77dff
This commit is contained in:
kgriffs 2013-04-05 17:15:14 -04:00
parent 0377f70b2e
commit 746d59576d
2 changed files with 0 additions and 44 deletions

View File

@ -1,42 +0,0 @@
#!/usr/bin/env python
# Copyright (c) 2013 Rackspace, Inc.
#
# 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.
"""Bootstrap for self-hosting a Marconi node
Alternatively, to host a WSGI app with an external server, configure
bootstrap with the WSGI transport and export the WSGI app callable, e.g.:
logging.config.fileConfig(logging_conf_file)
boot = Bootstrap(conf_file)
app = boot.transport.app
"""
import logging.config
import marconi
if __name__ == '__main__':
# @todo Parse command-line args
logging_config_file = '/etc/marconi/logging.conf'
config_file = '/etc/marconi/marconi.conf'
logging.config.fileConfig(logging_config_file)
kernel = marconi.Kernel(config_file)
kernel.run()

View File

@ -12,6 +12,4 @@ EXCLUDE+=',./tools'
EXCLUDE+=',*egg,build'
${PEP8} ${EXCLUDE} .
${PEP8} --filename=marconi* bin
! pyflakes marconi/ | grep "imported but unused\|redefinition of function" | grep -v "__init__.py"