diff options
author | yvesf <yvesf-git@xapek.org> | 2011-03-15 23:24:21 +0100 |
---|---|---|
committer | yvesf <yvesf-git@xapek.org> | 2011-03-15 23:24:21 +0100 |
commit | ee64aabc5ffb4cf7c47cc3e3bda614343132ee7b (patch) | |
tree | 9d83016aee0a213493fc590460e0714b7c8107ca | |
parent | affa0b49e97a7f8fb25d29c3dc90e5f0459b127d (diff) | |
download | offssh-ee64aabc5ffb4cf7c47cc3e3bda614343132ee7b.tar.gz offssh-ee64aabc5ffb4cf7c47cc3e3bda614343132ee7b.zip |
fix startstuff
-rw-r--r-- | offssh.py | 2 | ||||
-rwxr-xr-x | start.sh | 2 |
2 files changed, 1 insertions, 3 deletions
@@ -8,11 +8,9 @@ from twisted.conch import error, avatar from twisted.conch.checkers import SSHPublicKeyDatabase from twisted.conch.ssh import factory, userauth, connection, keys, session from twisted.internet import reactor, protocol, defer -from twisted.python import log from zope.interface import implements import sys import random -log.startLogging(sys.stderr) header = """Linux kischt 2.6.48-5-amd23 #1 SMP Wed Jan 12 04:22:50 UTC 2011 i687 @@ -2,4 +2,4 @@ uid=$(getent passwd nobody | cut -f 3 -d :) gid=$(getent passwd nobody | cut -f 4 -d :) -twistd --nodaemon -o --gid=$gid --uid=$uid -y offssh.py +twistd --nodaemon --no_save --gid=$gid --uid=$uid --python offssh.py |