Processed: Re: ifplugd: don't beep when no link beep detected

2008-03-05 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Bcc control
> tags 264917 + patch
Bug#264917: ifplugd: don't beep when no link beep detected
There were no tags set.
Tags added: patch

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#264917: ifplugd: don't beep when no link beep detected

2008-03-05 Thread Y Giridhar Appaji Nag
# Bcc control
tags 264917 + patch
thanks

On 07/03/23 10:50 +0100, Marcus Better said ...
> that the beep should be disabled in the default configuration, by having 
> the "-b" argument in /etc/default/ifplugd.

After reading the discussion on this bug, I am inclined towards
providing options for disabling beeps on link up and down individually.
The attached patch implements this.  I will include something like this
in the Debian package but will leave the default behaviour as it is
right now.

Cheers,

Giridhar

-- 
Y Giridhar Appaji Nag | http://www.appaji.net/
#! /bin/sh /usr/share/dpatch/dpatch-run
## 04_up_down_beep_options.dpatch by Y Giridhar Appaji Nag <[EMAIL PROTECTED]>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Implement --no-beep-up and --no-beep-down options

@DPATCH@
diff -urNad ifplugd-0.28~/man/ifplugd.8 ifplugd-0.28/man/ifplugd.8
--- ifplugd-0.28~/man/ifplugd.8 2008-03-05 13:27:09.0 +0530
+++ ifplugd-0.28/man/ifplugd.8  2008-03-05 13:31:20.0 +0530
@@ -22,7 +22,13 @@
 Do not use syslog, use stdout instead (for debugging) (default: off). 
 .TP
 \fB\-b | \-\-no-beep\f1
-Do not beep (off) 
+Do not beep (off), overrides --no-beep-up and --no-beep-down.
+.TP
+\fB\-U | \-\-no-beep-up\f1
+Do not beep on interface up (off)
+.TP
+\fB\-D | \-\-no-beep-down\f1
+Do not beep on interface down (off)
 .TP
 \fB\-f | \-\-ignore-fail\f1
 Ignore detection failure, retry instead. Failure is treated as "no link". 
(default: off) 
diff -urNad ifplugd-0.28~/man/ifplugd.8.xml.in ifplugd-0.28/man/ifplugd.8.xml.in
--- ifplugd-0.28~/man/ifplugd.8.xml.in  2008-03-05 13:27:09.0 +0530
+++ ifplugd-0.28/man/ifplugd.8.xml.in   2008-03-05 13:30:07.0 +0530
@@ -73,7 +73,21 @@
  
-b | --no-beep

-   Do not beep (off)
+   Do not beep (off), overrides --no-beep-up and 
--no-beep-down.
+ 
+ 
+ 
+ 
+   -U | --no-beep-up
+   
+   Do not beep on interface up (off)
+ 
+ 
+ 
+ 
+   -D | --no-beep-down
+   
+   Do not beep on interface down (off)
  
  
  
diff -urNad ifplugd-0.28~/src/ifplugd.c ifplugd-0.28/src/ifplugd.c
--- ifplugd-0.28~/src/ifplugd.c 2008-03-05 13:27:09.0 +0530
+++ ifplugd-0.28/src/ifplugd.c  2008-03-05 13:27:09.0 +0530
@@ -73,6 +73,8 @@
 
 int daemonize = 1,
 use_beep = 1,
+beep_on_up = 1,
+beep_on_down = 1,
 no_startup_script = 0,
 no_shutdown_script = 0,
 wait_on_fork = 0,
@@ -126,6 +128,18 @@
 return;
 }
 
+static void beep_up(int b) {
+   if(!beep_on_up)
+   return;
+   beep(b);
+}
+
+static void beep_down(int b) {
+   if(!beep_on_down)
+   return;
+   beep(b);
+}
+
 const char *pid_file_proc() {
 static char fn[PATH_MAX];
 snprintf(fn, sizeof(fn), "%s/ifplugd.%s.pid", VARRUN, interface);
@@ -237,13 +251,13 @@
 
 if (!WIFEXITED(r) || WEXITSTATUS(r) != 0) {
 if (status == IFSTATUS_UP)
-beep(2);
+beep_up(2);
 daemon_log(LOG_ERR, "Program execution failed, return value is %i.", 
WEXITSTATUS(r));
 
 return ignore_retval ? 0 : -1;
 } else {
 if (status == IFSTATUS_UP)
-beep(0);
+beep_up(0);
 
 daemon_log(LOG_INFO, "Program executed successfully.");
 return 0;
@@ -440,7 +454,10 @@
 goto finish;
 
 daemon_log(LOG_INFO, "Initialization complete, link beat %sdetected%s.", 
status == IFSTATUS_UP ? "" : "not ", use_ifmonitor ? (disabled ? ", interface 
disabled" : ", interface enabled") : "");
-beep(status == IFSTATUS_UP ? 0 : 1);
+if(status == IFSTATUS_UP)
+beep_up(0);
+else
+beep_down(1);
 
 if ((!no_startup_script && status == IFSTATUS_UP) || initial_down)
 if (action(status) < 0)
@@ -513,7 +530,10 @@
 
 if (status != s) {
 daemon_log(LOG_INFO, "Link beat %s.", status == IFSTATUS_DOWN ? 
"lost" : "detected");
-beep(status == IFSTATUS_UP ? 0 : 1);
+if(status == IFSTATUS_UP)
+beep_up(0);
+else
+beep_down(1);
 
 if (t)
 t = 0;
@@ -586,7 +606,7 @@
 setenv(IFPLUGD_ENV_PREVIOUS, strstatus(status), 1);
 setenv(IFPLUGD_ENV_CURRENT, strstatus(-1), 1);
 action(IFSTATUS_DOWN);
-beep(1);
+beep_down(1);
 }
 
 finish:
@@ -628,6 +648,8 @@
"   -n --no-daemonDo not daemonize (for debugging) 
(%s)\n"
"   -s --no-syslogDo not use syslog, use stderr instead 
(for debugging) (%s)\n"
"   -b --no-beep  Do not beep (%s)\n"
+   "   -U --no-beep-up   Do not beep on interface up (%s)\n"
+   

Re: Intent to NMU ifplugd to fix pending po-debconf l10n bugs

2008-03-05 Thread Y Giridhar Appaji Nag
Hi Christian,

On 08/03/05 07:41 +0100, Christian Perrier said ...
> (CC'ing Y Giridhar Appaji Nag who seems to be intending to take this
> package over)

Thank you, I am monitoring bugs on ifplugd via the PTS though :)

> Even if we're still far from the release of the next Debian version,

We can release now: http://lists.debian.org/debian-mentors/2008/03/msg9.html

> Let me know, as soon as possible, if you have any kind of objection to this
> process.

None at all.

> If you'd rather do the fix yourself, I will of course leave the package
> alone. Same if you have reasons not to do the update now.

If potential sponsors (Cc:ed) don't upload the package in about a week,
I will send a followup to this mail and you can proceed with the NMU.

Cheers,

Giridhar

-- 
Y Giridhar Appaji Nag | http://www.appaji.net/


pgpJYMLnWpxVe.pgp
Description: PGP signature


Re: Intent to NMU ifplugd to fix pending po-debconf l10n bugs

2008-03-05 Thread Christian Perrier
Y Giridhar Appaji Nag a écrit :
> Hi Christian,
> 
> On 08/03/05 07:41 +0100, Christian Perrier said ...
>> (CC'ing Y Giridhar Appaji Nag who seems to be intending to take this
>> package over)
> 
> Thank you, I am monitoring bugs on ifplugd via the PTS though :)
> 
>> Even if we're still far from the release of the next Debian version,
> 
> We can release now: 
> http://lists.debian.org/debian-mentors/2008/03/msg9.html
> 
>> Let me know, as soon as possible, if you have any kind of objection to this
>> process.
> 
> None at all.
> 
>> If you'd rather do the fix yourself, I will of course leave the package
>> alone. Same if you have reasons not to do the update now.
> 
> If potential sponsors (Cc:ed) don't upload the package in about a week,
> I will send a followup to this mail and you can proceed with the NMU.

I guess that the potential sponsor is Tolimar (aka Alex Schmehl), who I
have an entire confidence in.so that's fine by me.

In case he can't do the upload, I can do it. I generally avoid to commit
as long-term sponsor (too many sollicitations and I sometimes lack the
needed skills to check everything).but I can make an exception for
you because:

- we met
- you really are a promising DD (it doesn't take much time to see that!)
- you are a very friendly person..:-)



Bug#468693: PATCH: papercut: bashism in /bin/sh script

2008-03-05 Thread Leonardo Rodrigues de Mello
Hi everyone,

I had fixed this bug.
The patch is attached in this message.

Best Regards.
-- 
Leonardo Rodrigues de Mello
jabber: [EMAIL PROTECTED]
diff -uNr debian.orig/papercut.init debian/papercut.init
--- debian.orig/papercut.init	2008-03-05 10:55:33.0 -0300
+++ debian/papercut.init	2008-03-05 10:56:33.0 -0300
@@ -68,7 +68,7 @@
 ;;
 esac
 
-if [ $? == 0 ]; then
+if [ $? = 0 ]; then
 	echo .
 	exit 0
 else


Re: Intent to NMU ifplugd to fix pending po-debconf l10n bugs

2008-03-05 Thread Y Giridhar Appaji Nag
On 08/03/05 09:43 +0100, Christian Perrier said ...
> I guess that the potential sponsor is Tolimar (aka Alex Schmehl), who I
> have an entire confidence in.so that's fine by me.
> 
> In case he can't do the upload, I can do it. I generally avoid to commit

Alexander is quite active on the sponsoring front and indicated that he
would get back to me soon.

> as long-term sponsor (too many sollicitations and I sometimes lack the
> needed skills to check everything).but I can make an exception for
> you because:
> 
> - we met
> - you really are a promising DD (it doesn't take much time to see that!)
> - you are a very friendly person..:-)

You are very kind, thank you :)

Cheers,

Giridhar

-- 
Y Giridhar Appaji Nag | http://www.appaji.net/


pgpK9HWmMUo8W.pgp
Description: PGP signature


Bug#402730: ifplugd: Interrupts the system when running on non existent interface

2008-03-05 Thread Y Giridhar Appaji Nag
On 06/12/12 11:28 +0100, Klaus Fuerstberger said ...
> Anyway if i'm viewing DVD or use another 3D application as glxgears, I
> had to stop ifplugd on my system. Otherwise the image is jerkling
> every 1 second. I think ifplugd should not interrupt the system in
> such a way.

Does changing the poll time (--poll-time / -t) help?

Giridhar

-- 
Y Giridhar Appaji Nag | http://www.appaji.net/


signature.asc
Description: Digital signature


Processing of pyao_0.82-2_i386.changes

2008-03-05 Thread Archive Administrator
pyao_0.82-2_i386.changes uploaded successfully to localhost
along with the files:
  pyao_0.82-2.dsc
  pyao_0.82-2.diff.gz
  python-pyao_0.82-2_i386.deb

Greetings,

Your Debian queue daemon


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



pyao override disparity

2008-03-05 Thread Debian Installer
There are disparities between your recently accepted upload and the
override file for the following file(s):

python-pyao_0.82-2_i386.deb: package says priority is extra, override says 
optional.

Either the package or the override file is incorrect.  If you think
the override is correct and the package wrong please fix the package
so that this disparity is fixed in the next upload.  If you feel the
override is incorrect then please reply to this mail and explain why.

[NB: this is an automatically generated mail; if you replied to one
like it before and have not received a response yet, please ignore
this mail.  Your reply needs to be processed by a human and will be in
due course, but until then the installer will send these automated
mails; sorry.]

--
Debian distribution maintenance software

(This message was generated automatically; if you believe that there
is a problem with it please contact the archive administrators by
mailing [EMAIL PROTECTED])


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



pyao_0.82-2_i386.changes ACCEPTED

2008-03-05 Thread Debian Installer

Accepted:
pyao_0.82-2.diff.gz
  to pool/main/p/pyao/pyao_0.82-2.diff.gz
pyao_0.82-2.dsc
  to pool/main/p/pyao/pyao_0.82-2.dsc
python-pyao_0.82-2_i386.deb
  to pool/main/p/pyao/python-pyao_0.82-2_i386.deb


Override entries for your package:
pyao_0.82-2.dsc - source interpreters
python-pyao_0.82-2_i386.deb - optional python

Announcing to [EMAIL PROTECTED]
Closing bugs: 468985 


Thank you for your contribution to Debian.


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



Bug#402730: ifplugd: Interrupts the system when running on non existent interface

2008-03-05 Thread Klaus Fuerstberger

Y Giridhar Appaji Nag said the following on 05.03.2008 17:18:


Does changing the poll time (--poll-time / -t) help?


The bug still exist in the actual version. Changing the poll time to 5 
seconds let the Video flicker every 5 seconds, so it does not really help.


Try it out on a non existent interface:
strace ifplugd -i eth6 -f -u0 -d10 -w -I -n -t 5
glxgears or in my case fgl_glxgears

Every 5 seconds, or the default 1 second ifplugd searches for the 
interface and the fgl_glxgears stumbles.


Klaus




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



kendal

2008-03-05 Thread ambrose orazio
$500 Free Poker www.truepokerplay.info

Roll a plug between your fingers until it's small enough to slip gently into 
the outer ear canal; it will slowly expand to fill the space.


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



papercut 0.9.13-5 MIGRATED to testing

2008-03-05 Thread Debian testing watch
FYI: The status of the papercut source package
in Debian's testing distribution has changed.

  Previous version: 0.9.13-4
  Current version:  0.9.13-5

-- 
This email is automatically generated; [EMAIL PROTECTED] is responsible.
See http://people.debian.org/~henning/trille/ for more information.


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



We know how to treat our players

2008-03-05 Thread Abdul Galloway
Our safe, secure games will get you smiling when you start seeing dollars 
pouring in.
Huge progressive jackpots, slots, multi-hand, and single-hand blackjack. 

http://conitad.com.cn/


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



Bug#402730: ifplugd: Interrupts the system when running on non existent interface

2008-03-05 Thread Y Giridhar Appaji Nag
# Bcc: control
merge 402730 404955
thanks

On 08/03/05 21:15 +0100, Klaus Fuerstberger said ...
> Try it out on a non existent interface:
> strace ifplugd -i eth6 -f -u0 -d10 -w -I -n -t 5
> glxgears or in my case fgl_glxgears

OK.  I applied the patch at #404955 to the upcoming Debian revision of
ifplugd.  This should fix the problem, please do let me know.

Giridhar

-- 
Y Giridhar Appaji Nag | http://www.appaji.net/


pgpmAiwwccoge.pgp
Description: PGP signature


Processed: Re: Bug#402730: ifplugd: Interrupts the system when running on non existent interface

2008-03-05 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Bcc: control
> merge 402730 404955
Bug#402730: ifplugd: Interrupts the system when running on non existent 
interface
Bug#404955: ifplugd: Starts daemon even for non-existing static interfaces
Merged 402730 404955.

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Jetzt eine Affaire?

2008-03-05 Thread Moni
llundj fjjuysk  goxca nxlipdrm ytms rwpzfkan  kpgods  pyw




Jetzt eine Affaire ?

Dann schau mal hier: http://jetzt-eine-affaire04.tk

Hier findest du mit Sicherheit einen geilen Seitensprungpartner in deiner
Region!


Liebe Grüße

Moni















hnafji nputlrn  zpkdk bpcocdct vyxw jvnjogrc  pxywil  kyx



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



Bug#407093: ifplugd: causes high system load

2008-03-05 Thread Y Giridhar Appaji Nag
# Bcc: control
merge 407093 402730
thanks

On 07/01/15 23:07 -0500, Eric Price said ...
> running ifplugd increases the load average by about 0.3 on an idle

Giridhar

-- 
Y Giridhar Appaji Nag | http://www.appaji.net/


signature.asc
Description: Digital signature


Processed: Re: ifplugd: causes high system load

2008-03-05 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Bcc: control
> merge 407093 402730
Bug#402730: ifplugd: Interrupts the system when running on non existent 
interface
Bug#407093: ifplugd: causes high system load
Bug#404955: ifplugd: Starts daemon even for non-existing static interfaces
Merged 402730 404955 407093.

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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