From 856c4048f5e24e74a7fa02fcf2a3784c91c9c2ae Mon Sep 17 00:00:00 2001 From: Wheaties466 Date: Tue, 20 Aug 2019 11:53:13 -0400 Subject: [PATCH] the current version of twisted is incompatible version 15.1 .0 is the last version that uses 'IPluggableAuthenticationModules' this causes kippo not to run and you have to do some debugging to figure out why. This change fixes that. https://github.com/desaster/kippo/issues/202 --- scripts/deploy_kippo.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/deploy_kippo.sh b/scripts/deploy_kippo.sh index b55699fe..c0a044c5 100755 --- a/scripts/deploy_kippo.sh +++ b/scripts/deploy_kippo.sh @@ -19,8 +19,9 @@ chmod 755 registration.sh . ./registration.sh $server_url $deploy_key "kippo" apt-get update -apt-get -y install python-dev openssl python-openssl python-pyasn1 python-twisted git python-pip supervisor authbind ssh +apt-get -y install python-dev openssl python-openssl python-pyasn1 git python-pip supervisor authbind ssh +pip install twisted==15.1.0 # Change real SSH Port to 2222 sed -i 's/Port 22$/Port 2222/g' /etc/ssh/sshd_config