- Timestamp:
- Dec 24, 2009, 2:03:25 AM (15 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
package_branches/invirt-console/hvirt/debian/transform_sshd_config.invirt
r2774 r2775 1 1 #!/usr/bin/perl -0p 2 # Debathena rules (from debathena-ssh-server-config) 3 s/^#?GSSAPIAuthentication .*$/GSSAPIAuthentication yes\nGSSAPIKeyExchange yes\nGSSAPIStrictAcceptorCheck no/m or die; 4 s/^#?GSSAPICleanupCredentials .*$/GSSAPICleanupCredentials yes/m or die; 5 s/^#?ChallengeResponseAuthentication .*$/ChallengeResponseAuthentication yes/m or die; 6 ## In Debathena, privilege separation is configurable. 7 s/^#?UsePrivilegeSeparation .*$/UsePrivilegeSeparation yes/m or die; 8 s/^#?PasswordAuthentication .*$/PasswordAuthentication no/m or die; 9 10 # Invirt rules 2 11 s/^#?PrintLastLog .*$/PrintLastLog no/m or die; 3 12 s/$/\nAllowTcpForwarding no/ or die; 4 13 s/^#?X11Forwarding .*$/X11Forwarding no/m or die; 5 14 s/^#?Subsystem sftp.*$//m or die; 15 16
Note: See TracChangeset
for help on using the changeset viewer.