Changeset 2775 for package_branches/invirt-console
- Timestamp:
- Dec 24, 2009, 2:03:25 AM (15 years ago)
- 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 1 invirt-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 1 7 invirt-console (0.2.11) unstable; urgency=low 2 8 -
package_branches/invirt-console/hvirt/debian/control
r2177 r2775 3 3 Priority: extra 4 4 Maintainer: 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, initscripts5 Build-Depends: cdbs (>= 0.4.23-1.1), debhelper (>= 5), config-package-dev (>= 4.5~), nscd, openssh-server, initscripts, krb5-config, krb5-user, krb5-clients 6 6 Standards-Version: 3.7.2 7 7 … … 12 12 Depends: invirt-base, ${shlibs:Depends}, ${misc:Depends}, 13 13 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, 15 15 openssh-server, python, python-routefs, invirt-database, 16 remctl-server , debathena-ssh-server-config16 remctl-server 17 17 Description: Invirt serial-console proxy server 18 18 This is the software for the serial-console proxy server. -
package_branches/invirt-console/hvirt/debian/rules
r1815 r2775 7 7 /etc/nscd.conf.invirt \ 8 8 /etc/pam.d/sshd.invirt \ 9 /etc/ssh/sshd_config. debathena.invirt9 /etc/ssh/sshd_config.invirt 10 10 11 11 ifneq ($(wildcard /usr/share/base-files/nsswitch.conf),) … … 16 16 DEB_DIVERT_FILES_invirt-console-server += \ 17 17 /etc/conserver/conserver.cf.invirt \ 18 /etc/motd.invirt 18 /etc/krb5.conf \ 19 /etc/motd.invirt \ 20 /etc/ssh/sshd_config 19 21 DEB_DIVERT_FILES_invirt-console-host += \ 20 22 /etc/conserver/conserver.cf.invirt \ -
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.