Bug#1023688: incorrect syntax in patch

2022-12-17 Thread Lee Maguire
The modification to fcgiwrap.socket doesn’t appear to use values recognised by 
systemd.

I believe the configuration:

 Mode=0660
 SocketUser=www-data
 SockerGroup=www-data

Should actually be:

 SocketMode=0660
 SocketUser=www-data
 SocketGroup=www-data



Bug#876420: Support for systemd journal as a log source

2017-09-21 Thread Lee Maguire
Package: logcheck
Version: 1.3.18

I've made a change to logoutput() that allows you to add "journal" to
logcheck.logfiles in order to pull logs out of systemd journal.

(also allows for "systemd" to be listed as an alternative dependency
from system-log-daemon.

Patch attached.


>From d5a988cd7936d6ccbb9503ee0e32ca0cb2b15b9c Mon Sep 17 00:00:00 2001
From: Lee Maguire <lee-deb...@hexkey.co.uk>
Date: Fri, 22 Sep 2017 00:04:21 +0100
Subject: [PATCH] add support for journal

---
 logcheck | 43 +--
 1 file changed, 29 insertions(+), 14 deletions(-)

diff --git a/logcheck b/logcheck
index a8c58ea..e0bcf89 100755
--- a/logcheck
+++ b/logcheck
@@ -428,20 +428,35 @@ cleanchecked() {
 
 # Get the yet unseen part of one logfile.
 logoutput() {
-file="$1"
-
-# There are some problems with this section.
-debug "logoutput called with file: $file"
-if [ -f "$file" ]; then
-	offsetfile="$STATEDIR/offset$(echo "$file" | tr / .)"
-	debug "Running $LOGTAIL on $file"
-	$LOGTAIL $LOGTAIL_OPTS -f "$file" -o "$offsetfile" \
-	>> "$TMPDIR/logoutput/$(basename "$file")" 2>&1 \
-	|| error "Could not run logtail or save output"
-else
-	echo "E: File could not be read: $file" >> "$TMPDIR/errors" \
-	|| error "Could not output to $TMPDIR/errors."
-fi
+	file="$1"
+	JOURNALCTL="journalctl"
+	JOURNALCTL_OPTS=""
+
+	# There are some problems with this section.
+	debug "logoutput called with file: $file"
+	if [ -f "$file" ]; then
+		offsetfile="$STATEDIR/offset$(echo "$file" | tr / .)"
+		debug "Running $LOGTAIL on $file"
+		$LOGTAIL $LOGTAIL_OPTS -f "$file" -o "$offsetfile" \
+		>> "$TMPDIR/logoutput/$(basename "$file")" 2>&1 \
+		|| error "Could not run logtail or save output"
+	else
+		if [ $file == "journal" ] && [ -x "$(command -v $JOURNALCTL)" ]; then
+			offsetfile="$STATEDIR/offset.$file"
+			offsettime=""
+			if [ -f "$offsetfile" ]; then
+offsettime="--since=@$(stat -c %Y $offsetfile)"
+			fi
+			debug "Running $JOURNALCTL $JOURNALCTL_OPTS -q $offsettime"
+			$JOURNALCTL $JOURNALCTL_OPTS -q $offsettime \
+			>> "$TMPDIR/logoutput/$file" 2>&1 \
+			|| error "Could not run journalctl or save output"
+			touch $offsetfile
+		else
+			echo "E: File could not be read: $file" >> "$TMPDIR/errors" \
+			|| error "Could not output to $TMPDIR/errors."
+		fi
+	fi
 }
 
 # Show all the cli options to our users.
-- 
2.11.0



Bug#742488: No MKCALENDAR possible with pound

2014-06-13 Thread Lee Maguire
In addtion to the basic methods

GET|POST|HEAD|PUT|DELETE|OPTIONS|TRACE

The following are listed in the IANA registry (which was created this year)
at http://www.iana.org/assignments/http-methods/http-methods.xhtml
(several of which are not recognised by pound)

ACL|BASELINE-CONTROL|BIND|CHECKIN|CHECKOUT|COPY|LABEL|LINK|LOCK|MERGE|
MKACTIVITY|MKCALENDAR|MKCOL|MKREDIRECTREF|MKWORKSPACE|MOVE|ORDERPATCH|
PATCH|PROPFIND|PROPPATCH|REBIND|REPORT|SEARCH|UNBIND|UNCHECKOUT|UNLINK|
UNLOCK|UPDATE|UPDATEREDIRECTREF|VERSION-CONTROL

The following unregistered methods are recognised by pound

SUBSCRIBE|UNSUBSCRIBE|BPROPPATCH|POLL|BMOVE|BCOPY|BDELETE|BPROPFIND|
NOTIFY|CONNECT|RPC_IN_DATA|RPC_OUT_DATA

in addition, I would very much like pound to support

PURGE

(which is used to remove items from a server cache.)


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#641228: apt-listchanges: add Auto-Submitted header

2011-09-11 Thread Lee Maguire
Package: apt-listchanges
Version: 2.85.7+squeeze1
Severity: wishlist

Please add the header Auto-Submitted: auto-generated to mails
generated by apt-listchanges.

This is a standard email header and is described in RFC 3834
http://tools.ietf.org/html/rfc3834#section-5

Thanks.




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#540239: mime-support: please add application/mxf

2009-08-06 Thread Lee Maguire
Package: mime-support
Version: 3.44-1
Severity: wishlist

Please add an entry for the MXF media container
 application/mxf  mxf

as registered in
http://www.ietf.org/rfc/rfc4539.txt

Current versions of totem and vlc have MXF support.




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#489172: logcheck: please add Auto-Submitted header field to mailouts

2008-07-03 Thread Lee Maguire
Package: logcheck
Version: 1.2.54
Severity: wishlist

Please add the header Auto-Submitted: auto-generated to mails
generated by logcheck.  This header should be supported by many email
autoresponders and should prevent the need to set up logcheck specific
rules for vacation-type autoresponders.

Headers can be added in mail using the -a switch, e.g.
   mail -a Auto-Submitted: auto-generated -s $subject $SENDMAILTO

For details regarding the Auto-Submitted header field, see RFC 3834 sec 5
http://tools.ietf.org/html/rfc3834#section-5





-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#350601: awstats: Could not process Real logs in w3c format

2006-01-30 Thread Lee Maguire
Package: awstats
Version: 6.5-1
Severity: normal

Attempting to run awstats on a realserver log provided to us in W3C
format resulted in all entries being dropped.  Showing the dropped
entries gave output like this:

  Dropped record (method/protocol 'RTSP' not qualified when LogType=S):
  10.1.1.1 2006-01-28 13:08:54 -- rtsp://real.example.com/blah/example.rm 
1138453734 128 -- 200 999-999 6.0.12.1 ar-eg RN30DL -- RealPlayer 6.0.12.1 
WinNT 5.1 686 280 10367990 -- RTSP UDP 
44_Kbps_Stereo_Music_High_Response_-_RealAudio -- -- 1980572 -- -- -- -- -- -- 
571 -- -- -- -- -- -- -- -- --

Looking at the code - rtsp is recognised, but only in lower case.
I've patched my copy to convert the string to lowercase before checking.


--- awstats.pl  2006-01-30 16:55:10.156087185 +
+++ awstats.pl.orig 2006-01-30 16:54:30.192974487 +
@@ -6297,5 +6297,5 @@
# HTTP request. Keep only GET, POST, HEAD, *OK*
# and ERR! for Webstar. Do not keep OPTIONS,
# TRACE
}
-   elsif (($LogType eq 'W' || $LogType eq 'S')  
($field[$pos_method] eq 'GET' || $field[$pos_method] eq 'mms' || 
lc($field[$pos_method]) eq 'rtsp' || $field[$pos_method] eq 'http' || 
$field[$pos_method] eq 'RTP')) {
+   elsif (($LogType eq 'W' || $LogType eq 'S')  
($field[$pos_method] eq 'GET' || $field[$pos_method] eq 'mms' || 
$field[$pos_method] eq 'rtsp' || $field[$pos_method] eq 'http' || 
$field[$pos_method] eq 'RTP')) {
# Streaming request (windows media server,
# realmedia or darwin streaming server)
}



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#346502: logcheck-database: new output from su (login)

2006-01-08 Thread Lee Maguire
Package: logcheck-database
Version: 1.2.42
Severity: normal

An upgrade of the login package to 1:4.0.14 causes the following to be
sent every morning when cron.daily runs.

   Jan  8 06:25:03 enzo su[7896]: Successful su for nobody by root
   Jan  8 06:25:04 enzo su[7899]: Successful su for nobody by root
   Jan  8 06:25:05 enzo su[7901]: Successful su for nobody by root



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#336368: xscreensaver: screen keeps blanking when keys are pressed

2005-10-29 Thread Lee Maguire
Package: xscreensaver
Version: 4.23-1
Severity: important

Following the upgrade to 4.23, I noticed slight horizontal glitches on
the screen.  Typing then caused the screen to blank for one second
periods.  Some, but not all, mouse use also caused the blanking, but I
was able to select screensaver preferences and disable the screen saver.
This did not effect the blanking.  However, killing the daemon stopped
the blanking.  I have rebooted, and the blanking problem still reoccurs.


I'm using xserver-xorg (6.8.2.dfsg.1-9) with the sis driver.  The
configuration is as autogenerated, with the exception of
 ' Option NoYV12 true ' in the Device section.

Please let me know which information/diagnostics would be useful in
isolating this problem.  Thanks.


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: i386 (i586)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-386
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages xscreensaver depends on:
ii  libatk1.0-0   1.10.3-1   The ATK accessibility toolkit
ii  libc6 2.3.5-7GNU C Library: Shared libraries an
ii  libglade2-0   1:2.5.1-2  library to load .glade files at ru
ii  libglib2.0-0  2.8.3-1The GLib library of C routines
ii  libgtk2.0-0   2.6.10-1   The GTK+ graphical user interface 
ii  libice6   6.8.2.dfsg.1-9 Inter-Client Exchange library
ii  libjpeg62 6b-10  The Independent JPEG Group's JPEG 
ii  libpam0g  0.79-3 Pluggable Authentication Modules l
ii  libpango1.0-0 1.8.2-3Layout and rendering of internatio
ii  libsm66.8.2.dfsg.1-9 X Window System Session Management
ii  libx11-6  6.8.2.dfsg.1-9 X Window System protocol client li
ii  libxext6  6.8.2.dfsg.1-9 X Window System miscellaneous exte
ii  libxinerama1  6.8.2.dfsg.1-9 X Window System multi-head display
ii  libxml2   2.6.22-1   GNOME XML library
ii  libxmu6   6.8.2.dfsg.1-9 X Window System miscellaneous util
ii  libxpm4   6.8.2.dfsg.1-9 X pixmap library
ii  libxrandr26.8.2.dfsg.1-9 X Window System Resize, Rotate and
ii  libxrender1   1:0.9.0-2  X Rendering Extension client libra
ii  libxt66.8.2.dfsg.1-9 X Toolkit Intrinsics
ii  libxxf86misc1 6.8.2.dfsg.1-9 X miscellaneous extensions library
ii  libxxf86vm1   6.8.2.dfsg.1-9 X Video Mode selection library
ii  xlibs 6.8.2.dfsg.1-9 X Window System client libraries m
ii  zlib1g1:1.2.3-6  compression library - runtime

Versions of packages xscreensaver recommends:
pn  libjpeg-progs none (no description available)
ii  perl [perl5]  5.8.7-7Larry Wall's Practical Extraction 
ii  wbritish [wordlist]   5-4British English dictionary words f
pn  xli | xloadimage  none (no description available)

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#336368: xscreensaver: screen keeps blanking

2005-10-29 Thread Lee Maguire
I tried running the daemon in verbose mode, but it doesn't output
anything during the sporadic blanking.

$  xscreensaver -sync -verbose -no-capture
xscreensaver 4.23, copyright (c) 1991-2005 by Jamie Zawinski [EMAIL 
PROTECTED].
xscreensaver: running as lee/lee (1000/1000)
xscreensaver: in process 7074.
xscreensaver: 21:16:09: running xscreensaver-gl-helper: No such file or 
directory
xscreensaver: 21:16:10: xscreensaver-gl-helper did not report a GL visual!
xscreensaver: 21:16:10: running on display :0.0 (1 screen).
xscreensaver: 21:16:10: vendor is The X.Org Foundation, 60802000.
xscreensaver: 21:16:10: useful extensions:
xscreensaver: 21:16:10:   MIT Screen-Saver  -- not supported at compile time!
xscreensaver: 21:16:10:   Shared Memory
xscreensaver: 21:16:10:   Double-Buffering
xscreensaver: 21:16:10:   Power Management
xscreensaver: 21:16:10:   GLX
xscreensaver: 21:16:10:   XF86 Video-Mode
xscreensaver: 21:16:11:   Resize-and-Rotate
xscreensaver: 21:16:11: screen 0 non-colormapped depths: 16.
xscreensaver: 21:16:11: selecting RANDR events
xscreensaver: 21:16:11: 0: visual 0x22 (TrueColor,   depth: 16, cmap: default)
xscreensaver: 21:16:11: 0: saver window is 0xe1.
xscreensaver: 21:16:11: selecting events on extant windows... done.
xscreensaver: 21:16:12: awaiting idleness.
xscreensaver: 21:16:50: 0: unrecognised ClientMessage _NET_ACTIVE_WINDOW 
received
xscreensaver: 21:16:50: 0: for window 0xc00032 (epiphany / Epiphany)
xscreensaver: 21:16:57: 0: unrecognised ClientMessage _NET_ACTIVE_WINDOW 
received
xscreensaver: 21:16:57: 0: for window 0x2605def (gnome-terminal / 
Gnome-terminal)

Output of xdpyinfo:

name of display::0.0
version number:11.0
vendor string:The X.Org Foundation
vendor release number:60802000
X.Org version: 6.8.2
maximum request size:  16777212 bytes
motion buffer size:  256
bitmap unit, bit order, padding:32, LSBFirst, 32
image byte order:LSBFirst
number of supported pixmap formats:7
supported pixmap formats:
depth 1, bits_per_pixel 1, scanline_pad 32
depth 4, bits_per_pixel 8, scanline_pad 32
depth 8, bits_per_pixel 8, scanline_pad 32
depth 15, bits_per_pixel 16, scanline_pad 32
depth 16, bits_per_pixel 16, scanline_pad 32
depth 24, bits_per_pixel 32, scanline_pad 32
depth 32, bits_per_pixel 32, scanline_pad 32
keycode range:minimum 8, maximum 255
focus:  window 0x2605df0, revert to Parent
number of extensions:31
BIG-REQUESTS
DAMAGE
DOUBLE-BUFFER
DPMS
Extended-Visual-Information
FontCache
GLX
LBX
MIT-SCREEN-SAVER
MIT-SHM
MIT-SUNDRY-NONSTANDARD
RANDR
RECORD
RENDER
SECURITY
SGI-GLX
SHAPE
SYNC
TOG-CUP
X-Resource
XC-APPGROUP
XC-MISC
XFIXES
XFree86-Bigfont
XFree86-DGA
XFree86-Misc
XFree86-VidModeExtension
XInputExtension
XKEYBOARD
XTEST
XVideo
default screen number:0
number of screens:1

screen #0:
  print screen:no
  dimensions:1024x768 pixels (347x260 millimeters)
  resolution:75x75 dots per inch
  depths (7):16, 1, 4, 8, 15, 24, 32
  root window id:0x3b
  depth of root window:16 planes
  number of colormaps:minimum 1, maximum 1
  default colormap:0x20
  default number of colormap cells:64
  preallocated pixels:black 0, white 65535
  options:backing-store NO, save-unders NO
  largest cursor:64x64
  current input event mask:0xfa2033
KeyPressMask KeyReleaseMask   EnterWindowMask  
LeaveWindowMask  ButtonMotionMask StructureNotifyMask  
SubstructureNotifyMask   SubstructureRedirectMask FocusChangeMask  
PropertyChangeMask   ColormapChangeMask   
  number of visuals:4
  default visual id:  0x22
  visual:
visual id:0x22
class:TrueColor
depth:16 planes
available colormap entries:64 per subfield
red, green, blue masks:0xf800, 0x7e0, 0x1f
significant bits in color specification:6 bits
  visual:
visual id:0x23
class:TrueColor
depth:16 planes
available colormap entries:64 per subfield
red, green, blue masks:0xf800, 0x7e0, 0x1f
significant bits in color specification:6 bits
  visual:
visual id:0x24
class:TrueColor
depth:16 planes
available colormap entries:64 per subfield
red, green, blue masks:0xf800, 0x7e0, 0x1f
significant bits in color specification:6 bits
  visual:
visual id:0x25
class:TrueColor
depth:16 planes
available colormap entries:64 per subfield
red, green, blue masks:0xf800, 0x7e0, 0x1f
significant bits in color specification:6 bits





-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#325038: sound-juicer: UTF-8 in generated MP3 tags not recognised as such by players

2005-08-25 Thread Lee Maguire
Package: sound-juicer
Version: 2.10.1-3
Severity: normal

I recently encoded a CD which contained a track by the band Royksopp,
and used U+00F6 (o with diaresis) as the second character in the name.

The UTF-8 in the resulting filename looks fine in a terminal and in the
player app, however the Artist name in the tag information represents
the 2 byte UTF-8 character as two characters (this is the case with both
Totem and Rhythmbox).

I then edited the tag in an app called cantus, replaced the two
characters with the U+00F6, and saved.  The resulting mp3 now shows the
correct artist name in the player apps. A hex-dump shows that it
is still using the UTF-8 encoding 0xC3 0xB6.


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (600, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: i386 (i586)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-386
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages sound-juicer depends on:
ii  gconf22.10.1-1   GNOME configuration database syste
ii  gnome-media   2.10.2-0.2 The GNOME Media Utilities
ii  gstreamer0.8-cdparanoia   0.8.10-3   cdparanoia plugin for GStreamer
ii  gstreamer0.8-flac 0.8.10-3   FLAC plugin for GStreamer
ii  gstreamer0.8-misc 0.8.10-3   Collection of various GStreamer pl
ii  gstreamer0.8-vorbis   0.8.10-3   Vorbis plugin for GStreamer
ii  libart-2.0-2  2.3.17-1   Library of functions for 2D graphi
ii  libatk1.0-0   1.10.1-2   The ATK accessibility toolkit
ii  libbonobo2-0  2.10.0-1   Bonobo CORBA interfaces library
ii  libbonoboui2-02.10.0-1   The Bonobo UI library
ii  libc6 2.3.5-4GNU C Library: Shared libraries an
ii  libgconf2-4   2.10.1-1   GNOME configuration database syste
ii  libglade2-0   1:2.5.1-2  library to load .glade files at ru
ii  libglib2.0-0  2.8.0-1The GLib library of C routines
ii  libgnome2-0   2.10.1-1   The GNOME 2 library - runtime file
ii  libgnomecanvas2-0 2.10.2-2   A powerful object-oriented display
ii  libgnomeui-0  2.10.1-1   The GNOME 2 libraries (User Interf
ii  libgnomevfs2-02.10.1-5   The GNOME virtual file-system libr
ii  libgstreamer-gconf0.8-0   0.8.10-3   GConf support for GStreamer
ii  libgstreamer0.8-0 0.8.10-2   Core GStreamer libraries, plugins,
ii  libgtk2.0-0   2.6.9-1The GTK+ graphical user interface
ii  libice6   6.8.2.dfsg.1-5 Inter-Client Exchange library
ii  libmusicbrainz4c2 2.1.1-3.2  Second generation incarnation of t
ii  libnautilus-burn1 2.10.2-1   Nautilus Burn Library - runtime ve
ii  liborbit2 1:2.12.2-3 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0 1.8.2-1Layout and rendering of internatio
ii  libpopt0  1.7-5  lib for parsing cmdline parameters
ii  libsm66.8.2.dfsg.1-5 X Window System Session Management
ii  libstdc++64.0.1-6The GNU Standard C++ Library v3
ii  libxml2   2.6.20-1   GNOME XML library
ii  xlibs 6.8.2.dfsg.1-5 X Window System client libraries m
ii  zlib1g1:1.2.3-3  compression library - runtime

Versions of packages sound-juicer recommends:
ii  eject   2.0.13deb-13 ejects CDs and operates CD-Changer

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#324347: logcheck-database: messages given when connecting phone via USB

2005-08-21 Thread Lee Maguire
Package: logcheck-database
Version: 1.2.40
Severity: wishlist

I get the following mailed whenever I connect my phone to workstation via USB 
(it has
both a scsi disk and two modem interfaces available via USB).

 Aug 21 12:56:00 localhost kernel: usb 1-2: new full speed USB device using 
ohci_hcd and address 4
 Aug 21 12:56:00 localhost kernel: cdc_acm 1-2:1.1: ttyACM0: USB ACM device
 Aug 21 12:56:00 localhost kernel: cdc_acm 1-2:1.3: ttyACM1: USB ACM device
 Aug 21 12:56:00 localhost kernel: usb-storage: device found at 4
 Aug 21 12:56:01 localhost kernel: usb-storage: waiting for device to settle 
before scanning
 Aug 21 12:56:06 localhost kernel:   Vendor: Sony Eri  Model: Memory Stick Rev: 

 Aug 21 12:56:06 localhost kernel: sda: Mode Sense: 00 6a 00 00
 Aug 21 12:56:06 localhost kernel: sda: Mode Sense: 00 6a 00 00
 Aug 21 12:56:06 localhost kernel: usb-storage: device scan complete
 Aug 21 12:57:54 localhost scsi.agent[17057]:  sd_mod: loaded successfully 
(for disk)




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#316392: foomatic-filters-ppds: printer runs off a blank page after every page (LaserJet)

2005-06-30 Thread Lee Maguire
Package: foomatic-filters-ppds
Version: 20050430-1
Severity: normal

Since upgrading to sarge, every page printed off using CUPS via samba
results in an extra blank page being run through the printer.

I tracked down the old ppd file I was using from a backup, munged it a
little, and fixed the problem.  The only part modifed by CUPS
configfuation appear to be DefaultPageSize and DefaultPageRegion.

--- HP-Color_LaserJet_2550-Postscript.ppd.orig  2005-06-30 17:37:47.0 
+0100
+++ HP-Color_LaserJet_2550-Postscript.ppd   2005-06-30 17:37:54.0 
+0100
@@ -60,9 +60,9 @@

 *FoomaticIDs: HP-Color_LaserJet_2550 Postscript
-*FoomaticRIPCommandLine: level=%D; /usr/bin/printf quot;%%!\n %%
-%%\n%Cquot;; if [ $level -gt 0 ]; then if [ $level -lt 99 ]; then lev
-el=quot; -dLanguageLevel=$levelquot;; else level=quot;quot;; fi; g
-s -q -dPARANOIDSAFER -dNOPAUSE -dBATCH -sDEVICE=pswrite$level%A%Z -sOu
-tputFile=- -; else cat; fi
+*FoomaticRIPCommandLine: level=%D; /usr/bin/printf quot;%!\n %%%
+%\n%Cquot;; if [ $level -gt 0 ]; then if [ $level -lt 99 ]; then leve
+l=quot; -dLanguageLevel=$levelquot;; else level=quot;quot;; fi; gs
+ -q -dPARANOIDSAFER -dNOPAUSE -dBATCH -sDEVICE=pswrite$level%A%Z -sOut
+putFile=- -; else cat; fi
 *End

@@ -71,5 +71,5 @@
 *OpenUI *PageSize/Page Size: PickOne
 *OrderDependency: 100 AnySetup *PageSize
-*DefaultPageSize: Letter
+*DefaultPageSize: A4
 *PageSize Letter/US Letter: /PageSize[612 792]/ImagingBBox 
nullsetpagedevice
 *PageSize A4/A4: /PageSize[595 842]/ImagingBBox nullsetpagedevice
@@ -89,5 +89,5 @@
 *OpenUI *PageRegion: PickOne
 *OrderDependency: 100 AnySetup *PageRegion
-*DefaultPageRegion: Letter
+*DefaultPageRegion: A4
 *PageRegion Letter/US Letter: /PageSize[612 792]/ImagingBBox 
nullsetpagedevice
 *PageRegion A4/A4: /PageSize[595 842]/ImagingBBox nullsetpagedevice
@@ -164,5 +164,5 @@
 *FoomaticRIPOption Duplex: enum CmdLine C
 *OrderDependency: 130 AnySetup *Duplex
-*DefaultDuplex: None
+*DefaultDuplex: Notcapable
 *Duplex DuplexNoTumble/Long Edge (Standard): %% FoomaticRIPOptionSetting: 
Duplex=DuplexNoTumble
 *FoomaticRIPOptionSetting Duplex=DuplexNoTumble: lt;lt;/Duplex true
@@ -177,4 +177,6 @@
 etpagedevice\n
 *End
+*Duplex Notcapable/Not capable: %% FoomaticRIPOptionSetting: 
Duplex=Notcapable
+*FoomaticRIPOptionSetting Duplex=Notcapable: 
 *CloseUI: *Duplex



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#315343: findutils: package purge should remove locatedb

2005-06-21 Thread Lee Maguire
Package: findutils
Version: 4.2.22-1
Severity: normal

After purging findutils, contrary to expectations I still have the file
  /var/cache/locate/locatedb



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#315344: scrollkeeper.log not removed by purge

2005-06-21 Thread Lee Maguire
Package: scrollkeeper
Version: 0.3.14-10
Severity: normal

After purging scrollkeeper, the file /var/log/scrollkeeper.log
is still on the system.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#315346: purge of aptitude does not remove logs

2005-06-21 Thread Lee Maguire
Package: aptitude
Version: 0.2.15.9-2
Severity: normal

A purge of aptitude does not seem to remove
  /var/log/aptitude
  /var/log/aptitude.1.gz
  /var/log/aptitude.2.gz
  ...
etc.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#315171: gnome-terminal-data: cannot remove if gconf2 removed

2005-06-20 Thread Lee Maguire
Package: gnome-terminal-data
Version: 2.10.0-2
Severity: normal


It's possible to remove gconf2 before attempting to remove
gnome-terminal-data.

In this scenario gnome-terminal-data.prerm fails because gconftool-2 is
no longer available.  The prerm script needs to check for the existence
of the executable and only run it if it exists.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#315174: apt-listchanges: purge fails if ucf removed

2005-06-20 Thread Lee Maguire
Package: apt-listchanges
Version: 2.59-0.2
Severity: normal

The postrm script calls ucf without first confirming its existence.
It's possible to remove ucf before purging apt-listchanges, and this
would result in an error, preventing apt-listchanges from being purged.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#315173: exim4-base: purge fails if debconf already removed

2005-06-20 Thread Lee Maguire
Package: exim4-base
Version: 4.51-1
Severity: normal

It's possible to remove debconf before attempting to purge exim4-base
and exim4-config.  Under these circumstances both of the postrm scripts
will fail since confmodule cannot be sourced.




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#312729: logcheck-database: reports successful ssh logins

2005-06-09 Thread Lee Maguire
Package: logcheck-database
Version: 1.2.39
Severity: normal

Everytime a sucessful ssh login occurs a line such as the following is
sent:

   Jun  9 17:34:36 mouse sshd[8379]: Accepted password for lee from 
:::10.100.12.2 port 11767

(Note the lack of ssh or ssh2 specified at the end.)



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#303133: udev: all_partitions workaround no longer working

2005-04-04 Thread Lee Maguire
Package: udev
Version: 0.056-1
Severity: normal

The current version of udev didn't create the device /dev/hdb4
on reboot.  The following minor changes create them on my system:

--- udev.rules.orig 2005-03-21 18:14:35.0 +
+++ udev.rules  2005-04-05 00:11:58.0 +0100
@@ -19,7 +19,7 @@
 
 # workaround for devices which do not report media changes
-BUS=ide, KERNEL=hd[a-z][0-9]*, SYSFS{removable}=1, \
+BUS=ide, KERNEL=hd[a-z], SYSFS{removable}=1, \
   PROGRAM=/etc/udev/scripts/ide-model.sh %k, RESULT=IOMEGA ZIP *, \
-  OPTIONS=all_partitions, NAME=%k, GROUP=floppy
+  OPTIONS=all_partitions, NAME=%k, GROUP=floppy
 
 # IDE devices



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#298915: rhythmbox: Non-FHS-compliant location for ipod directory

2005-03-11 Thread Lee Maguire
I'd assumed ipod support was broken in rhythmbox before seeing this
report, so personally I'd consider the severity higher than minor.

This is just to add that the debian package of gtkpod has used /media/ipod
since December 2004, so it's likely to be used over /mnt/ipod (at least
for new users) in Debian.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#297995: logcheck: messages generated by ipod attachment

2005-03-03 Thread Lee Maguire
Package: logcheck-database
Version: 1.2.35
Severity: wishlist

The following supressable messages are reported by logcheck
(workstation) when an iPod shuffle is inserted (with a udev
rule to create /dev/ipod ) which is essentially just a USB
storage device.

Mar  3 01:09:37 localhost kernel: usb 1-1: configuration #1 chosen from 2 
choices
Mar  3 01:09:38 localhost usb.agent[9622]: Keeping default configuration with 
/sys//devices/pci:00/:00:01.2/usb1/1-1
Mar  3 01:09:45 localhost kernel: SCSI subsystem initialized
Mar  3 01:09:45 localhost kernel:   Vendor: Apple Model: iPod  
Rev: 2.70
Mar  3 01:09:46 localhost scsi.agent[9692]: disk at 
/devices/pci:00/:00:01.2/usb1/1-1/1-1:1.0/host0/0:0:0:0
Mar  3 01:09:46 localhost kernel: sda: assuming Write Enabled
Mar  3 01:09:46 localhost kernel: sda: assuming drive cache: write through
Mar  3 01:09:46 localhost udev[9709]: configured rule in 
'/etc/udev/rules.d/local.rules[2]' applied, added symlink 'ipod'
Mar  3 01:09:46 localhost udev[9709]: configured rule in 
'/etc/udev/rules.d/local.rules[2]' applied, 'sda' becomes '%k'
Mar  3 01:09:47 localhost udev[9720]: configured rule in 
'/etc/udev/rules.d/local.rules[2]' applied, added symlink 'ipod'
Mar  3 01:09:47 localhost udev[9720]: configured rule in 
'/etc/udev/rules.d/local.rules[2]' applied, 'sda1' becomes '%k'

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i586)
Kernel: Linux 2.6.8-2-386
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#286729: prboom: Does not start Illegal instruction

2005-01-27 Thread Lee Maguire
  Running prboom just results in the message Illegal instruction.
 
 I cannot reproduce this on my system. Can you please run prboom
 from inside gdb and provide a backtrace from where it receives the
 SIGILL, preferably with debug symbols compiled in?

I've just installed prboom using apt-build with optimisations for
the processor i'm using AMD K6 and it seems to work fine.

Is it possible that the packaged version of prdoom does not work on all
i386 compatible CPUs?



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#286729: prboom: Does not start Illegal instruction

2005-01-26 Thread Lee Maguire
[2005-01-26] Moritz Muehlenhoff wrote:
 I cannot reproduce this on my system. Can you please run prboom
 from inside gdb and provide a backtrace from where it receives the
 SIGILL, preferably with debug symbols compiled in?

With the packaged binary:

GNU gdb 6.3-debian
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type show copying to see the conditions.
There is absolutely no warranty for GDB.  Type show warranty for details.
This GDB was configured as i386-linux...(no debugging symbols found)
Using host libthread_db library /lib/tls/libthread_db.so.1.

(gdb) run
Starting program: /usr/games/prboom 
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
[Thread debugging using libthread_db enabled]
[New Thread 1078767744 (LWP 1014)]
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)

Program received signal SIGILL, Illegal instruction.
[Switching to Thread 1078767744 (LWP 1014)]
0x0808bd1a in ?? ()
(gdb) backtrace
#0  0x0808bd1a in ?? ()
#1  0x0808bc90 in ?? ()
#2  0x080b3b34 in ?? ()
#3  0xb948 in ?? ()
#4  0x080496f5 in _init ()
#5  0x40181904 in __libc_start_main () from /lib/tls/libc.so.6
#6  0x08049dd1 in ?? ()
(gdb) quit
The program is running.  Exit anyway? (y or n) 



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#286729: prboom: Does not start Illegal instruction

2005-01-25 Thread Lee Maguire
Package: prboom
Version: 2:2.2.6-1

Running prboom just results in the message Illegal instruction.

$ prboom

prboom v2.2.6 (http://prboom.sourceforge.net/)
Illegal instruction
$ ls /usr/share/games/doom/
boomlump.wad  doom2.wad  legacy.dat  prboom.wad

I've tried installing lxdoom-x11 and doomlegacy-sdl and both seem to
work OK (although doomlegacy needs to have the sound switched off).

No command line arguments seem to produce any other result.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i586)
Kernel: Linux 2.6.8-2-386
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)

Versions of packages prboom depends on:
ii  freedoom [doo 0.3-1  free game files for the 3D game DO
ii  libc6 2.3.2.ds1-20   GNU C Library: Shared libraries an
ii  libsdl-mixer1 1.2.6-1mixer library for Simple DirectMed
ii  libsdl-net1.2 1.2.5-3network library for Simple DirectM
ii  libsdl1.2debi 1.2.7+1.2.8cvs20041007-4.1 Simple DirectMedia Layer




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#290871: installation-reports: pivot_root fails due to /dev naming in grub config

2005-01-17 Thread Lee Maguire
Package: installation-reports

INSTALL REPORT

Debian-installer-version: RC2 (20041121)
Date: 2005-01-14
Method: netinst CD

Machine: hp proLiant DL380
Root Device: HP CISS (hardware RAID 5)
   /dev/cciss/c0d0p1 (94M) bootable /boot
   /dev/cciss/c0d0p2 (199G) /
   /dev/cciss/c0d0p3 swap

Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot worked:[O]
Configure network HW:   [O]
Config network: [O]
Detect CD:  [O]
Load installer modules: [O]
Detect hard drives: [O]
Partition hard drives:  [O]
Create file systems:[O]
Mount partitions:   [O]
Install base system:[O]
Install boot loader:[E]
Reboot: [E]

Comments/Problems:

The device naming used in the grub config does not match the names available at
boot time.  Specifically /dev/cciss/c0d0p* devices were not available until
after booting, the /dev/cciss/host0/... naming is used instead.

Boot argument linux26.  There are no problems booting the CD and
setting up the base system, and no error messages at grub installation.
Reboot fails when it attempts to switch from /boot to root

  /dev/cciss/host0/target0: p1 p2 p3
  pivot_root: No such file or directory
  /sbin/init: 4??: cannot open dev/console: No such file
  Kernel panic: Attempted to kill init!

I rebooted the install CD, got as far as the partition menu, dropped into
a console on F2.
  mount /dev/cciss/host0/target0/part0 /target
  nano /target/grub/menu.list

Located the lines that read
   kernel /vmlinuz-2.6.8-1-386 root=/dev/cciss/c0d0p2
and replaced with
   kernel /vmlinuz-2.6.8-1-386 root=/dev/cciss/host0/target0/part2

unmounted, rebooted.  This works around the problem.




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]