~ubuntu-branches/debian/experimental/upstart/experimental

« back to all changes in this revision

Viewing changes to debian/event.d/system-services/tty3

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl
  • Date: 2007-10-22 07:09:12 UTC
  • mfrom: (1.2.1 upstream) (16.1.9 feisty)
  • Revision ID: james.westby@ubuntu.com-20071022070912-4cybewh6m1vwk09p
Tags: 0.3.9-1
* New upstream release.
* debian/watch
  - Find the latest tarball by parsing the download.html page.
* debian/upstart-compat-sysv.preinst
  - Do not parse /var/lib/dpkg/status directly but use dpkg-query instead.
* debian/control
  - Use the new "Homepage:" field to specify the upstream URL.
  - Drop versioned Build-Depends on dpkg-dev as the version in etch is
    recent enough.
  - Use quilt instead of dpatch for the patch management. Update the
    Build-Depends accordingly.
* debian/rules
  - Do not ignore "make clean" errors.
  - Include quilt.make which provides the patch and unpatch target.
* debian/README.Debian
  - Update the FAQ with regard to boot message logging. Closes: #426598
  - Add some notes that initramfs generators other than initramfs-tools can
    cause problems. Closes: #410836

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
# This service maintains a getty on tty3 from the point the system is
4
4
# started until it is shut down again.
5
5
 
6
 
start on runlevel-2
7
 
start on runlevel-3
8
 
start on runlevel-4
9
 
start on runlevel-5
10
 
 
11
 
stop on shutdown
12
 
 
13
 
respawn /sbin/getty 38400 tty3
 
6
start on runlevel 2
 
7
start on runlevel 3
 
8
 
 
9
stop on runlevel 0
 
10
stop on runlevel 1
 
11
stop on runlevel 4
 
12
stop on runlevel 5
 
13
stop on runlevel 6
 
14
 
 
15
exec /sbin/getty 38400 tty3
 
16
respawn