Changeset 1200 for trunk/packages/sipb-xen-console
- Timestamp:
- Oct 24, 2008, 4:00:48 AM (16 years ago)
- Location:
- trunk/packages/sipb-xen-console
- Files:
-
- 5 edited
- 12 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/packages/sipb-xen-console/debian/changelog
r1121 r1200 1 invirt-console-server (0.0.1) unstable; urgency=low 2 3 * sipb-xen -> invirt 4 * -> -server while we're at it 5 6 -- Greg Price <price@mit.edu> Fri, 24 Oct 2008 03:54:40 -0400 7 1 8 sipb-xen-console (8.4) unstable; urgency=low 2 9 -
trunk/packages/sipb-xen-console/debian/control
r1072 r1200 1 Source: sipb-xen-console1 Source: invirt-console-server 2 2 Section: servers 3 3 Priority: extra 4 Maintainer: SIPB Xen Project <sipb-xen@mit.edu>4 Maintainer: Invirt Project <invirt@mit.edu> 5 5 Build-Depends: cdbs (>= 0.4.23-1.1), debhelper (>= 5), config-package-dev (>= 4.5~), nscd, openssh-server, debathena-ssh-server-config, initscripts 6 6 Standards-Version: 3.7.2 7 7 8 Package: sipb-xen-console8 Package: invirt-console-server 9 9 Architecture: all 10 10 Provides: ${diverted-files} 11 11 Conflicts: ${diverted-files} 12 12 Depends: sipb-xen-base, ${shlibs:Depends}, ${misc:Depends}, conserver-client, daemon, debathena-kerberos-config, fuse-utils, libnss-pgsql1, nscd, openssh-server, python, python-routefs, sipb-xen-chrony-config, sipb-xen-database-common, remctl-server, debathena-ssh-server-config 13 Description: SIPB Xen serial console server 14 This package should be installed on sipb-xen-console 15 It makes sure that necessary tools are available. 13 Description: Invirt serial-console proxy server 14 This is the software for the serial-console proxy server. -
trunk/packages/sipb-xen-console/debian/copyright
r335 r1200 1 1 This package was created for internal use of the SIPB Xen Project of 2 the MIT Student Information Processing Board. Ask sipb-xen@mit.edu if2 the MIT Student Information Processing Board. Ask invirt@mit.edu if 3 3 you have questions about redistribution. -
trunk/packages/sipb-xen-console/debian/invirt-console-server.init
r1190 r1200 1 1 #!/bin/bash 2 2 ### BEGIN INIT INFO 3 # Provides: sipb-xen-console3 # Provides: invirt-console-server 4 4 # Required-Start: $local_fs $remote_fs 5 5 # Required-Stop: $local_fs $remote_fs 6 6 # Default-Start: 2 3 4 5 7 7 # Default-Stop: 0 1 6 8 # Short-Description: sipb-xen Console Server homedir filesystem8 # Short-Description: Invirt console proxy server 9 9 # Description: 10 10 ### END INIT INFO 11 11 12 # Author: SIPB Xen Project <sipb-xen@mit.edu>12 # Author: Invirt Project <invirt@mit.edu> 13 13 14 14 # Do NOT "set -e" … … 16 16 # PATH should only include /usr/* if it runs after the mountnfs.sh script 17 17 PATH=/sbin:/usr/sbin:/bin:/usr/bin 18 DESC=" The sipb-xenconsole server"19 NAME= sipb-xen-console20 DAEMON=/usr/bin/ sipb-xen-consolefs18 DESC="the Invirt console server" 19 NAME=invirt-console-server 20 DAEMON=/usr/bin/invirt-consolefs 21 21 DAEMON_ARGS="/consolefs" 22 22 PIDFILE=/var/run/$NAME.pid … … 39 39 { 40 40 for i in /etc/conserver/invirt-hosts.cf \ 41 /etc/remctl/acl/invirt-console \41 /etc/remctl/acl/invirt-console-server \ 42 42 /etc/issue.net.no_tkt \ 43 43 /etc/nss-pgsql.conf \ -
trunk/packages/sipb-xen-console/debian/rules
r1062 r1200 1 1 #!/usr/bin/make -f 2 2 3 DEB_DIVERT_EXTENSION = . sipb-xen4 DEB_TRANSFORM_FILES_ sipb-xen-console+= \5 /etc/init.d/bootmisc.sh. sipb-xen\6 /etc/nsswitch.conf. sipb-xen\7 /etc/nscd.conf. sipb-xen\8 /etc/pam.d/sshd. sipb-xen\9 /etc/ssh/sshd_config.debathena. sipb-xen3 DEB_DIVERT_EXTENSION = .invirt 4 DEB_TRANSFORM_FILES_invirt-console-server += \ 5 /etc/init.d/bootmisc.sh.invirt \ 6 /etc/nsswitch.conf.invirt \ 7 /etc/nscd.conf.invirt \ 8 /etc/pam.d/sshd.invirt \ 9 /etc/ssh/sshd_config.debathena.invirt 10 10 11 11 ifneq ($(wildcard /usr/share/base-files/nsswitch.conf),) 12 DEB_CHECK_FILES_SOURCE_/etc/nsswitch.conf. sipb-xen= \12 DEB_CHECK_FILES_SOURCE_/etc/nsswitch.conf.invirt = \ 13 13 /usr/share/base-files/nsswitch.conf 14 14 endif 15 15 16 DEB_DIVERT_FILES_ sipb-xen-console+= \17 /etc/conserver/conserver.cf. sipb-xen\18 /etc/motd. sipb-xen16 DEB_DIVERT_FILES_invirt-console-server += \ 17 /etc/conserver/conserver.cf.invirt \ 18 /etc/motd.invirt 19 19 20 20 include /usr/share/cdbs/1/rules/debhelper.mk -
trunk/packages/sipb-xen-console/files/etc/nss-pgsql.conf.mako
r1072 r1200 2 2 connectionstring = host=${cfg.db.host} dbname=${cfg.db.dbname} user=${cfg.db.user} port=${cfg.db.port} 3 3 4 getpwnam = SELECT name, NULL, name, '/consolefs/'|| name, '/usr/bin/ sipb-xen-consolesh', machine_id + 1000, machine_id + 1000 FROM machines WHERE name = $15 getpwuid = SELECT name, NULL, name, '/consolefs/'|| name, '/usr/bin/ sipb-xen-consolesh', machine_id + 1000, machine_id + 1000 FROM machines WHERE machine_id + 1000 = $16 allusers = SELECT name, NULL, name, '/consolefs/'|| name, '/usr/bin/ sipb-xen-consolesh', machine_id + 1000, machine_id + 1000 FROM machines4 getpwnam = SELECT name, NULL, name, '/consolefs/'|| name, '/usr/bin/invirt-consolesh', machine_id + 1000, machine_id + 1000 FROM machines WHERE name = $1 5 getpwuid = SELECT name, NULL, name, '/consolefs/'|| name, '/usr/bin/invirt-consolesh', machine_id + 1000, machine_id + 1000 FROM machines WHERE machine_id + 1000 = $1 6 allusers = SELECT name, NULL, name, '/consolefs/'|| name, '/usr/bin/invirt-consolesh', machine_id + 1000, machine_id + 1000 FROM machines 7 7 getgrnam = SELECT name, NULL, machine_id + 1000 FROM machines WHERE name = $1 8 8 getgrgid = SELECT name, NULL, machine_id + 1000 FROM machines WHERE machine_id + 1000 = $1 -
trunk/packages/sipb-xen-console/files/usr/bin/invirt-consolefs
r1190 r1200 30 30 self.fuse_args.add("allow_other", True) 31 31 32 openlog(' sipb-xen-consolefs ', LOG_PID, LOG_DAEMON)32 openlog('invirt-consolefs ', LOG_PID, LOG_DAEMON) 33 33 34 34 syslog(LOG_DEBUG, 'Init complete.')
Note: See TracChangeset
for help on using the changeset viewer.