2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-25 02:52:07 +00:00

Begin reorganizing content for packaging

This commit is contained in:
Jarrod Johnson 2014-05-06 13:37:31 -04:00
parent 785148ad07
commit c5cb5649d5
30 changed files with 12 additions and 7 deletions

3
TODO
View File

@ -29,4 +29,5 @@ KeyError: ''
-confetty to do right thing with respect to status updates when run right on a
console. It currently clutters up the screen with data that would land in
a titlebar
-audit log did not show confetty activity for starting console
-audit log did not show confetty activity for starting console
-read exclusive and full exclusive console access modes

View File

@ -59,8 +59,8 @@ path = os.path.dirname(os.path.realpath(__file__))
path = os.path.realpath(os.path.join(path, '..'))
sys.path.append(path)
import confluent.common.tlvdata as tlvdata
import confluent.common.client as client
import confluent.tlvdata as tlvdata
import confluent.client as client
conserversequence = '\x05c' # ctrl-e, c

View File

@ -22,7 +22,7 @@ path = os.path.dirname(os.path.realpath(__file__))
path = os.path.realpath(os.path.join(path, '..'))
sys.path.append(path)
import confluent.common.client as client
import confluent.client as client
node = sys.argv[1]

View File

@ -19,7 +19,7 @@ import errno
import os
import socket
import ssl
import confluent.common.tlvdata as tlvdata
import confluent.tlvdata as tlvdata
SO_PASSCRED = 16

1
client/requirements.txt Normal file
View File

@ -0,0 +1 @@
confluent_common>=0.1

View File

@ -1,3 +1,4 @@
#!/usr/bin/env python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright 2014 IBM Corporation
@ -18,7 +19,9 @@ import sys
import os
path = os.path.dirname(os.path.realpath(__file__))
path = os.path.realpath(os.path.join(path, '..'))
sys.path.append(path)
if not path.startswith('/usr'):
# if installed into system path, do not muck with things
sys.path.append(path)
from confluent import main
#import cProfile

View File

@ -30,7 +30,7 @@ import eventlet.green.ssl as ssl
import eventlet
import confluent.auth as auth
import confluent.common.tlvdata as tlvdata
import confluent.tlvdata as tlvdata
import confluent.consoleserver as consoleserver
import confluent.config.configmanager as configmanager
import confluent.exceptions as exc