Changeset 2775


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

Removed debathena dependencies from invirt-console

Location:
package_branches/invirt-console/hvirt/debian
Files:
1 added
3 edited
1 moved

Legend:

Unmodified
Added
Removed
  • package_branches/invirt-console/hvirt/debian/changelog

    r2444 r2775  
     1invirt-console (0.2.12) unstable; urgency=low
     2
     3  * Removed dependency on debathena pkgs
     4
     5 -- Greg Brockman <gdb@mit.edu>  Thu, 24 Dec 2009 01:54:32 -0500
     6
    17invirt-console (0.2.11) unstable; urgency=low
    28
  • package_branches/invirt-console/hvirt/debian/control

    r2177 r2775  
    33Priority: extra
    44Maintainer: Invirt project <invirt@mit.edu>
    5 Build-Depends: cdbs (>= 0.4.23-1.1), debhelper (>= 5), config-package-dev (>= 4.5~), nscd, openssh-server, debathena-ssh-server-config, initscripts
     5Build-Depends: cdbs (>= 0.4.23-1.1), debhelper (>= 5), config-package-dev (>= 4.5~), nscd, openssh-server, initscripts, krb5-config, krb5-user, krb5-clients
    66Standards-Version: 3.7.2
    77
     
    1212Depends: invirt-base, ${shlibs:Depends}, ${misc:Depends},
    1313 conserver-client, conserver-server, daemon,
    14  debathena-kerberos-config, fuse-utils, libnss-pgsql1, nscd,
     14 fuse-utils, libnss-pgsql1, nscd, krb5-config, krb5-user, krb5-clients,
    1515 openssh-server, python, python-routefs, invirt-database,
    16  remctl-server, debathena-ssh-server-config
     16 remctl-server
    1717Description: Invirt serial-console proxy server
    1818 This is the software for the serial-console proxy server.
  • package_branches/invirt-console/hvirt/debian/rules

    r1815 r2775  
    77        /etc/nscd.conf.invirt \
    88        /etc/pam.d/sshd.invirt \
    9         /etc/ssh/sshd_config.debathena.invirt
     9        /etc/ssh/sshd_config.invirt
    1010
    1111ifneq ($(wildcard /usr/share/base-files/nsswitch.conf),)
     
    1616DEB_DIVERT_FILES_invirt-console-server += \
    1717        /etc/conserver/conserver.cf.invirt \
    18         /etc/motd.invirt
     18        /etc/krb5.conf \
     19        /etc/motd.invirt \
     20        /etc/ssh/sshd_config
    1921DEB_DIVERT_FILES_invirt-console-host += \
    2022        /etc/conserver/conserver.cf.invirt \
  • 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.