Ignore:
Timestamp:
Dec 24, 2009, 2:03:25 AM (14 years ago)
Author:
gdb
Message:

Removed debathena dependencies from invirt-console

File:
1 moved

Legend:

Unmodified
Added
Removed
  • package_branches/invirt-console/hvirt/debian/transform_sshd_config.invirt

    r2774 r2775  
    11#!/usr/bin/perl -0p
     2# Debathena rules (from debathena-ssh-server-config)
     3s/^#?GSSAPIAuthentication .*$/GSSAPIAuthentication yes\nGSSAPIKeyExchange yes\nGSSAPIStrictAcceptorCheck no/m or die;
     4s/^#?GSSAPICleanupCredentials .*$/GSSAPICleanupCredentials yes/m or die;
     5s/^#?ChallengeResponseAuthentication .*$/ChallengeResponseAuthentication yes/m or die;
     6## In Debathena, privilege separation is configurable.
     7s/^#?UsePrivilegeSeparation .*$/UsePrivilegeSeparation yes/m or die;
     8s/^#?PasswordAuthentication .*$/PasswordAuthentication no/m or die;
     9
     10# Invirt rules
    211s/^#?PrintLastLog .*$/PrintLastLog no/m or die;
    312s/$/\nAllowTcpForwarding no/ or die;
    413s/^#?X11Forwarding .*$/X11Forwarding no/m or die;
    514s/^#?Subsystem sftp.*$//m or die;
     15
     16
Note: See TracChangeset for help on using the changeset viewer.