diff options
-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 |