linux-hotplug.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* RUN
@ 2007-07-10 20:32 Adam Kane
  2007-07-10 22:01 ` RUN Bauke Jan Douma
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Adam Kane @ 2007-07-10 20:32 UTC (permalink / raw)
  To: linux-hotplug

Hi list,

Is it possible to use more than one RUN+= statement in a udev line, or 
execute more than one thing?  I am wanting to execute more than one 
thing upon my usb key being plugged in.

Here is what I have in udev.rules

BUS="scsi", SYSFS{model}="USB2FlashStorage", SYMLINK="usbdrive", 
RUN+="/bin/mount /dev/usbdrive"

The RUN+ statement is mounting the drive to /media/usbdrive, as 
specified in the /etc/fstab.  I would like to to also run "/bin/sh 
/media/usbdrive/test.sh"

I have tried the following with no success:

BUS="scsi", SYSFS{model}="USB2FlashStorage", SYMLINK="usbdrive", 
RUN+="/bin/mount /dev/usbdrive ; /bin/sh /media/usbdrive/test.sh"


BUS="scsi", SYSFS{model}="USB2FlashStorage", SYMLINK="usbdrive", 
RUN+="/bin/mount /dev/usbdrive && /bin/sh /media/usbdrive/test.sh"


BUS="scsi", SYSFS{model}="USB2FlashStorage", SYMLINK="usbdrive", 
RUN+="/bin/mount /dev/usbdrive", RUN+="/bin/sh /media/usbdrive/test.sh"


Hope this makes sense.

Thanks in advance,

Adam Kane

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Linux-hotplug-devel mailing list  http://linux-hotplug.sourceforge.net
Linux-hotplug-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-hotplug-devel

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: RUN
  2007-07-10 20:32 RUN Adam Kane
@ 2007-07-10 22:01 ` Bauke Jan Douma
  2007-07-10 22:08 ` RUN Adam Kane
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Bauke Jan Douma @ 2007-07-10 22:01 UTC (permalink / raw)
  To: linux-hotplug

Adam Kane wrote on 10-07-07 22:32:
> Hi list,
> 
> Is it possible to use more than one RUN+= statement in a udev line, or 
> execute more than one thing?  I am wanting to execute more than one 
> thing upon my usb key being plugged in.
> 
> Here is what I have in udev.rules
> 
> BUS="scsi", SYSFS{model}="USB2FlashStorage", SYMLINK="usbdrive", 
> RUN+="/bin/mount /dev/usbdrive"
> 
> The RUN+ statement is mounting the drive to /media/usbdrive, as 
> specified in the /etc/fstab.  I would like to to also run "/bin/sh 
> /media/usbdrive/test.sh"
> 
> I have tried the following with no success:
> 
> BUS="scsi", SYSFS{model}="USB2FlashStorage", SYMLINK="usbdrive", 
> RUN+="/bin/mount /dev/usbdrive ; /bin/sh /media/usbdrive/test.sh"
> 
> 
> BUS="scsi", SYSFS{model}="USB2FlashStorage", SYMLINK="usbdrive", 
> RUN+="/bin/mount /dev/usbdrive && /bin/sh /media/usbdrive/test.sh"
> 
> 
> BUS="scsi", SYSFS{model}="USB2FlashStorage", SYMLINK="usbdrive", 
> RUN+="/bin/mount /dev/usbdrive", RUN+="/bin/sh /media/usbdrive/test.sh"

Something like RUN+="eval bin/mount /dev/usbdrive"; /media/usbdrive/test.sh"?
Or put all commands in one script and run that:
RUN+="mount_and_test.sh"


> Adam Kane

bjd


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Linux-hotplug-devel mailing list  http://linux-hotplug.sourceforge.net
Linux-hotplug-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-hotplug-devel

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: RUN
  2007-07-10 20:32 RUN Adam Kane
  2007-07-10 22:01 ` RUN Bauke Jan Douma
@ 2007-07-10 22:08 ` Adam Kane
  2007-07-11  0:04 ` RUN Kay Sievers
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Adam Kane @ 2007-07-10 22:08 UTC (permalink / raw)
  To: linux-hotplug

Using  the ; separator will not work.  I tried adding eval, and still no 
luck.

Putting the commands in one script is not feasible as I do not want the 
script to reside on the machine, instead on the thumb drive.  Does that 
make sense?

Adam

Bauke Jan Douma wrote:
> Adam Kane wrote on 10-07-07 22:32:
>> Hi list,
>>
>> Is it possible to use more than one RUN+= statement in a udev line, 
>> or execute more than one thing?  I am wanting to execute more than 
>> one thing upon my usb key being plugged in.
>>
>> Here is what I have in udev.rules
>>
>> BUS="scsi", SYSFS{model}="USB2FlashStorage", SYMLINK="usbdrive", 
>> RUN+="/bin/mount /dev/usbdrive"
>>
>> The RUN+ statement is mounting the drive to /media/usbdrive, as 
>> specified in the /etc/fstab.  I would like to to also run "/bin/sh 
>> /media/usbdrive/test.sh"
>>
>> I have tried the following with no success:
>>
>> BUS="scsi", SYSFS{model}="USB2FlashStorage", SYMLINK="usbdrive", 
>> RUN+="/bin/mount /dev/usbdrive ; /bin/sh /media/usbdrive/test.sh"
>>
>>
>> BUS="scsi", SYSFS{model}="USB2FlashStorage", SYMLINK="usbdrive", 
>> RUN+="/bin/mount /dev/usbdrive && /bin/sh /media/usbdrive/test.sh"
>>
>>
>> BUS="scsi", SYSFS{model}="USB2FlashStorage", SYMLINK="usbdrive", 
>> RUN+="/bin/mount /dev/usbdrive", RUN+="/bin/sh /media/usbdrive/test.sh"
>
> Something like RUN+="eval bin/mount /dev/usbdrive"; 
> /media/usbdrive/test.sh"?
> Or put all commands in one script and run that:
> RUN+="mount_and_test.sh"
>
>
>> Adam Kane
>
> bjd
>

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Linux-hotplug-devel mailing list  http://linux-hotplug.sourceforge.net
Linux-hotplug-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-hotplug-devel

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: RUN
  2007-07-10 20:32 RUN Adam Kane
  2007-07-10 22:01 ` RUN Bauke Jan Douma
  2007-07-10 22:08 ` RUN Adam Kane
@ 2007-07-11  0:04 ` Kay Sievers
  2007-07-11  0:59 ` RUN Richard Michael
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Kay Sievers @ 2007-07-11  0:04 UTC (permalink / raw)
  To: linux-hotplug

On 7/11/07, Adam Kane <adamk@inguin.com> wrote:
> Using  the ; separator will not work.  I tried adding eval, and still no
> luck.
>
> Putting the commands in one script is not feasible as I do not want the
> script to reside on the machine, instead on the thumb drive.  Does that
> make sense?
>
> Adam
>
> Bauke Jan Douma wrote:
> > Adam Kane wrote on 10-07-07 22:32:
> >> Hi list,
> >>
> >> Is it possible to use more than one RUN+= statement in a udev line,
> >> or execute more than one thing?  I am wanting to execute more than
> >> one thing upon my usb key being plugged in.
> >>
> >> Here is what I have in udev.rules
> >>
> >> BUS="scsi", SYSFS{model}="USB2FlashStorage", SYMLINK="usbdrive",
> >> RUN+="/bin/mount /dev/usbdrive"
> >>
> >> The RUN+ statement is mounting the drive to /media/usbdrive, as
> >> specified in the /etc/fstab.  I would like to to also run "/bin/sh
> >> /media/usbdrive/test.sh"
> >>
> >> I have tried the following with no success:
> >>
> >> BUS="scsi", SYSFS{model}="USB2FlashStorage", SYMLINK="usbdrive",
> >> RUN+="/bin/mount /dev/usbdrive ; /bin/sh /media/usbdrive/test.sh"
> >>
> >>
> >> BUS="scsi", SYSFS{model}="USB2FlashStorage", SYMLINK="usbdrive",
> >> RUN+="/bin/mount /dev/usbdrive && /bin/sh /media/usbdrive/test.sh"
> >>
> >>
> >> BUS="scsi", SYSFS{model}="USB2FlashStorage", SYMLINK="usbdrive",
> >> RUN+="/bin/mount /dev/usbdrive", RUN+="/bin/sh /media/usbdrive/test.sh"
> >
> > Something like RUN+="eval bin/mount /dev/usbdrive";
> > /media/usbdrive/test.sh"?
> > Or put all commands in one script and run that:
> > RUN+="mount_and_test.sh"

Today you can have only one RUN key, it will change some day, but I
never got to finish the smarter rule parsing which will allow any
number of keys in a rule.

You need to do:
   RUN+="/bin/sh -c '/program1; /program2'"
for now.

Kay

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Linux-hotplug-devel mailing list  http://linux-hotplug.sourceforge.net
Linux-hotplug-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-hotplug-devel

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: RUN
  2007-07-10 20:32 RUN Adam Kane
                   ` (2 preceding siblings ...)
  2007-07-11  0:04 ` RUN Kay Sievers
@ 2007-07-11  0:59 ` Richard Michael
  2007-07-11  1:08 ` RUN Kay Sievers
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Richard Michael @ 2007-07-11  0:59 UTC (permalink / raw)
  To: linux-hotplug

> Today you can have only one RUN key, it will change some day, but I
> never got to finish the smarter rule parsing which will allow any
> number of keys in a rule.
> 
> You need to do:
>    RUN+="/bin/sh -c '/program1; /program2'"
> for now.

I have misunderstood either the poster's question or the paragraph in
"man udev" discussing the RUN key:

----excerpt----
RUN

  Add a program to the list of programs to be executed for a specific
device. This can only be used for very short running tasks.  Running an
event process for a long period of time may block all further events for
this or a dependent device. Long running tasks need to be immediately
detached from the event process itself.

----excerpt----

For example, this works:

SUBSYSTEM="*", RUN+="/root/udev-catch-remove"
ENV{DEVNAME}="/dev/foobar", RUN+="/path/to/prog"

Is this only working because the match keys are different?

Regards,
Richard

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Linux-hotplug-devel mailing list  http://linux-hotplug.sourceforge.net
Linux-hotplug-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-hotplug-devel

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: RUN
  2007-07-10 20:32 RUN Adam Kane
                   ` (3 preceding siblings ...)
  2007-07-11  0:59 ` RUN Richard Michael
@ 2007-07-11  1:08 ` Kay Sievers
  2007-07-11  2:11 ` RUN Bryan Kadzban
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Kay Sievers @ 2007-07-11  1:08 UTC (permalink / raw)
  To: linux-hotplug

On Tue, 2007-07-10 at 20:59 -0400, Richard Michael wrote:
> > Today you can have only one RUN key, it will change some day, but I
> > never got to finish the smarter rule parsing which will allow any
> > number of keys in a rule.
> > 
> > You need to do:
> >    RUN+="/bin/sh -c '/program1; /program2'"
> > for now.
> 
> I have misunderstood either the poster's question or the paragraph in
> "man udev" discussing the RUN key:
> 
> ----excerpt----
> RUN
> 
>   Add a program to the list of programs to be executed for a specific
> device. This can only be used for very short running tasks.  Running an
> event process for a long period of time may block all further events for
> this or a dependent device. Long running tasks need to be immediately
> detached from the event process itself.
> 
> ----excerpt----
> 
> For example, this works:
> 
> SUBSYSTEM="*", RUN+="/root/udev-catch-remove"
> ENV{DEVNAME}="/dev/foobar", RUN+="/path/to/prog"
> 
> Is this only working because the match keys are different?

These are two rules with independent RUN keys, right?

The first on runs for _every_ event as the SUBSYSTEM match doesn't do
anything. The second may run when the env matches, but $DEVNAME is
usually not available at the time of rule processing. You can have any
number of rules with _one_ RUN key per rule and they will all be
executed.

The question was how to run two programs from a _single_ rule. The
obvious solution would be to specify two RUN keys, but that doesn't work
with todays in-memory rule presentation. It will change when I find the
time to work on that.

Thanks,
Kay


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Linux-hotplug-devel mailing list  http://linux-hotplug.sourceforge.net
Linux-hotplug-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-hotplug-devel

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: RUN
  2007-07-10 20:32 RUN Adam Kane
                   ` (4 preceding siblings ...)
  2007-07-11  1:08 ` RUN Kay Sievers
@ 2007-07-11  2:11 ` Bryan Kadzban
  2007-07-11  8:36 ` RUN Scott James Remnant
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Bryan Kadzban @ 2007-07-11  2:11 UTC (permalink / raw)
  To: linux-hotplug

-----BEGIN PGP SIGNED MESSAGE-----
Hash: RIPEMD160

Kay Sievers wrote:
> The question was how to run two programs from a _single_ rule.

Would duplicate rules (with the same criteria) work?  I.e., something
like:

BUS="scsi", ATTRS{model}="USB2FlashStorage", SYMLINK+="usbdrive",
RUN+="/bin/mount /dev/usbdrive"
BUS="scsi", ATTRS{model}="USB2FlashStorage", RUN+="/bin/sh
/media/usbdrive/test.sh"

(Where I've fixed the keys to match what udev >= 098 expects.)

Assuming these fire in the same order as they're in the rules file (and
multiple rules are allowed to have the same criteria), it should work
for what Adam needs (I think).
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.7 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFGlDxgS5vET1Wea5wRAx/eAJ4o52jmBleuTl6CAy05RzTg9BmvCQCg4cSH
2MSYkpd+QMggI7Uo2vhXJ84=WzoU
-----END PGP SIGNATURE-----

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Linux-hotplug-devel mailing list  http://linux-hotplug.sourceforge.net
Linux-hotplug-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-hotplug-devel

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: RUN
  2007-07-10 20:32 RUN Adam Kane
                   ` (5 preceding siblings ...)
  2007-07-11  2:11 ` RUN Bryan Kadzban
@ 2007-07-11  8:36 ` Scott James Remnant
  2007-07-11 13:12 ` RUN Richard Michael
  2007-07-13  0:10 ` RUN Adam Kane
  8 siblings, 0 replies; 10+ messages in thread
From: Scott James Remnant @ 2007-07-11  8:36 UTC (permalink / raw)
  To: linux-hotplug


[-- Attachment #1.1: Type: text/plain, Size: 848 bytes --]

On Tue, 2007-07-10 at 22:11 -0400, Bryan Kadzban wrote:

> Kay Sievers wrote:
> > The question was how to run two programs from a _single_ rule.
> 
> Would duplicate rules (with the same criteria) work?  I.e., something
> like:
> 
> BUS=="scsi", ATTRS{model}=="USB2FlashStorage", SYMLINK+="usbdrive",
> RUN+="/bin/mount /dev/usbdrive"
> BUS=="scsi", ATTRS{model}=="USB2FlashStorage", RUN+="/bin/sh
> /media/usbdrive/test.sh"
> 
> (Where I've fixed the keys to match what udev >= 098 expects.)
> 
You could also use a GOTO/LABEL combination

BUS!="scsi", GOTO="usbdrive_end"
ATTRS{model}!="USB2FlashStorage", GOTO="usbdrive_end"

SYMLINK+="usbdrive"
RUN+="/bin/mount /dev/usbdrive"
RUN+="/bin/sh /media/usbdrive/test.sh"

LABEL="usbdrive_end"

Scott
-- 
Scott James Remnant
Ubuntu Development Manager
scott@ubuntu.com

[-- Attachment #1.2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

[-- Attachment #2: Type: text/plain, Size: 286 bytes --]

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

[-- Attachment #3: Type: text/plain, Size: 226 bytes --]

_______________________________________________
Linux-hotplug-devel mailing list  http://linux-hotplug.sourceforge.net
Linux-hotplug-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-hotplug-devel

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: RUN
  2007-07-10 20:32 RUN Adam Kane
                   ` (6 preceding siblings ...)
  2007-07-11  8:36 ` RUN Scott James Remnant
@ 2007-07-11 13:12 ` Richard Michael
  2007-07-13  0:10 ` RUN Adam Kane
  8 siblings, 0 replies; 10+ messages in thread
From: Richard Michael @ 2007-07-11 13:12 UTC (permalink / raw)
  To: linux-hotplug


> You can have any number of rules with _one_ RUN key per rule and they
> will all be executed.
> 
> The question was how to run two programs from a _single_ rule. The
> obvious solution would be to specify two RUN keys, but that doesn't
> work with todays in-memory rule presentation. It will change when I
> find the time to work on that.

That clarifies it, thanks.

Perhaps the man page could indicate:

RUN

  If more than one program must be run for an event, a rule with one RUN
key must be written for each program.  For example, to run three
programs, write three rules with identical match keys, each running one
of the three programs.

Does that decribe the situation accurately?

Richard

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Linux-hotplug-devel mailing list  http://linux-hotplug.sourceforge.net
Linux-hotplug-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-hotplug-devel

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: RUN
  2007-07-10 20:32 RUN Adam Kane
                   ` (7 preceding siblings ...)
  2007-07-11 13:12 ` RUN Richard Michael
@ 2007-07-13  0:10 ` Adam Kane
  8 siblings, 0 replies; 10+ messages in thread
From: Adam Kane @ 2007-07-13  0:10 UTC (permalink / raw)
  To: linux-hotplug



Kay Sievers wrote:
> On 7/11/07, Adam Kane <adamk@inguin.com> wrote:
>> Using  the ; separator will not work.  I tried adding eval, and still no
>> luck.
>>
>> Putting the commands in one script is not feasible as I do not want the
>> script to reside on the machine, instead on the thumb drive.  Does that
>> make sense?
>>
>> Adam
>>
>> Bauke Jan Douma wrote:
>> > Adam Kane wrote on 10-07-07 22:32:
>> >> Hi list,
>> >>
>> >> Is it possible to use more than one RUN+= statement in a udev line,
>> >> or execute more than one thing?  I am wanting to execute more than
>> >> one thing upon my usb key being plugged in.
>> >>
>> >> Here is what I have in udev.rules
>> >>
>> >> BUS="scsi", SYSFS{model}="USB2FlashStorage", SYMLINK="usbdrive",
>> >> RUN+="/bin/mount /dev/usbdrive"
>> >>
>> >> The RUN+ statement is mounting the drive to /media/usbdrive, as
>> >> specified in the /etc/fstab.  I would like to to also run "/bin/sh
>> >> /media/usbdrive/test.sh"
>> >>
>> >> I have tried the following with no success:
>> >>
>> >> BUS="scsi", SYSFS{model}="USB2FlashStorage", SYMLINK="usbdrive",
>> >> RUN+="/bin/mount /dev/usbdrive ; /bin/sh /media/usbdrive/test.sh"
>> >>
>> >>
>> >> BUS="scsi", SYSFS{model}="USB2FlashStorage", SYMLINK="usbdrive",
>> >> RUN+="/bin/mount /dev/usbdrive && /bin/sh /media/usbdrive/test.sh"
>> >>
>> >>
>> >> BUS="scsi", SYSFS{model}="USB2FlashStorage", SYMLINK="usbdrive",
>> >> RUN+="/bin/mount /dev/usbdrive", RUN+="/bin/sh 
>> /media/usbdrive/test.sh"
>> >
>> > Something like RUN+="eval bin/mount /dev/usbdrive";
>> > /media/usbdrive/test.sh"?
>> > Or put all commands in one script and run that:
>> > RUN+="mount_and_test.sh"
>
> Today you can have only one RUN key, it will change some day, but I
> never got to finish the smarter rule parsing which will allow any
> number of keys in a rule.
>
> You need to do:
>   RUN+="/bin/sh -c '/program1; /program2'"
> for now.
>
> Kay
Thank you Kay, this solution has proved viable.

Adam

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Linux-hotplug-devel mailing list  http://linux-hotplug.sourceforge.net
Linux-hotplug-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-hotplug-devel

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2007-07-13  0:10 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-10 20:32 RUN Adam Kane
2007-07-10 22:01 ` RUN Bauke Jan Douma
2007-07-10 22:08 ` RUN Adam Kane
2007-07-11  0:04 ` RUN Kay Sievers
2007-07-11  0:59 ` RUN Richard Michael
2007-07-11  1:08 ` RUN Kay Sievers
2007-07-11  2:11 ` RUN Bryan Kadzban
2007-07-11  8:36 ` RUN Scott James Remnant
2007-07-11 13:12 ` RUN Richard Michael
2007-07-13  0:10 ` RUN Adam Kane

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).