~ubuntu-branches/ubuntu/lucid/config-package-dev/lucid-backports

« back to all changes in this revision

Viewing changes to examples/debathena-transform-example/debian/transform_syslog.conf.debathena

  • Committer: Bazaar Package Importer
  • Author(s): Tim Abbott
  • Date: 2008-07-13 01:54:48 UTC
  • Revision ID: james.westby@ubuntu.com-20080713015448-0cj0y2p8jx7vam7z
Tags: 4.8
* Add additional documentation to the makefile fragments
* Add doc/ directory with pointer to online documentation
* Add examples/ directory (Closes: #486130).
* Rename configures- to diverts- as the prefix for the virtual packages
  that cause packages diverting the same file to conflict (before it is
  too late).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/perl -0p
 
2
# perl -0p is useful for writing efficient transform scripts.
 
3
 
 
4
# Disable sending to all users 'emerg' level syslog messages.
 
5
 
 
6
# This prevents CVS (or any other applications that wants to) from
 
7
# spamming all terminals.
 
8
 
 
9
s/^(\*\.emerg.*\*)/# $1/m or die;