source: trunk/debathena/config/ssh-server-config/debian/transform_ssh.debathena @ 24787

Revision 24787, 233 bytes checked in by jdreed, 14 years ago (diff)
In ssh-server-config: * Disable GSSAPI if there's no keytab when sshd is started (Trac #315)
  • Property svn:executable set to *
Line 
1#!/usr/bin/perl -0p
2s|SSHD_OPTS=|SSHD_OPTS=
3
4\x23 Disable GSSAPI if there's no keytab when sshd is started
5if [ ! -e /etc/krb5.keytab ]; then
6   SSHD_OPTS="\$SSHD_OPTS -o GSSAPIKeyExchange=no -o GSSAPIAuthentication=no"
7fi|x or die;
Note: See TracBrowser for help on using the repository browser.