All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC] /sbin/hotplug multiplexor
@ 2003-04-14 19:00 Greg KH
  2003-04-14 19:16 ` Oliver Neukum
  2003-04-14 22:46 ` [RFC] /sbin/hotplug multiplexor - take 2 Greg KH
  0 siblings, 2 replies; 32+ messages in thread
From: Greg KH @ 2003-04-14 19:00 UTC (permalink / raw)
  To: linux-hotplug-devel, linux-kernel

Hi all,

With the advent of a lot of people wanting to use /sbin/hotplug to add
their own different types of functions, I want to propose the following
replacement for the current /sbin/hotplug:

-----
#!/bin/sh
DIR="/etc/hotplug.d"

for I in "${DIR}/"* ; do
	$I $1 &
done

exit 1
-----

Then all scripts/programs/whatever that wants to get called when
/sbin/hotplug goes off can add themselves to the /etc/hotplug.d
directory.

This should help solve the recent devlabel issue with the current
hotplug scripts, and allow things like udev to also watch all hotplug
actions.

Any objections or comments?  If not, I'll make the changes in the
linux-hotplug project and release a new version based on this.

Thanks to Martin Schwenke for giving me this idea (even if he doesn't
realize it :)

Note, this is only for the "big" hotplug versions that live on
everyone's disk.  I'm still advocating something small like a
combination of udev and dietHotplug for the initramfs image.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 32+ messages in thread
* [RFC] /sbin/hotplug multiplexor - take 2
@ 2003-04-14 22:46 Greg KH
  2003-04-15 19:19 ` David Brownell
                   ` (7 more replies)
  0 siblings, 8 replies; 32+ messages in thread
From: Greg KH @ 2003-04-14 22:46 UTC (permalink / raw)
  To: linux-hotplug

Ok, based on the comments so far, how about this proposed version of
/sbin/hotplug to provide a multiplexor?

thanks,

greg k-h

----------
#!/bin/sh
DIR="/etc/hotplug.d"

for I in "${DIR}/$1/"* "${DIR}/"all/* ; do
	test -x $I && $I $1 ;
done

exit 1
----------



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
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] 32+ messages in thread
* RE: [RFC] /sbin/hotplug multiplexor - take 2
@ 2003-04-16  0:01 Perez-Gonzalez, Inaky
  2003-04-18 22:21 ` Greg KH
  0 siblings, 1 reply; 32+ messages in thread
From: Perez-Gonzalez, Inaky @ 2003-04-16  0:01 UTC (permalink / raw)
  To: 'Greg KH',
	'linux-hotplug-devel@lists.sourceforge.net',
	'linux-kernel@vger.kernel.org'


> From: Greg KH [mailto:greg@kroah.com]
>
> ...
>
> for I in "${DIR}/$1/"* "${DIR}/"all/* ; do
> 	test -x $I && $I $1 ;

test -x "$I" && "$I" "$1"

Just in case?

Iñaky Pérez-González -- Not speaking for Intel -- all opinions are my own
(and my fault)

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

end of thread, other threads:[~2003-04-19 18:22 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-04-14 19:00 [RFC] /sbin/hotplug multiplexor Greg KH
2003-04-14 19:16 ` Oliver Neukum
2003-04-14 19:54   ` Greg KH
2003-04-14 20:09     ` Oliver Neukum
2003-04-14 20:33       ` Greg KH
2003-04-14 21:11         ` Oliver Neukum
2003-04-14 21:24           ` Kevin P. Fleming
2003-04-14 21:34             ` Greg KH
2003-04-14 21:45             ` Robert Love
2003-04-15 18:17               ` Frank van Maarseveen
2003-04-15 19:59               ` David Brownell
2003-04-14 21:30           ` Greg KH
2003-04-14 21:43             ` Oliver Neukum
2003-04-14 21:52               ` Greg KH
2003-04-14 22:19                 ` Oliver Neukum
2003-04-14 22:44                   ` Greg KH
2003-04-14 22:46 ` [RFC] /sbin/hotplug multiplexor - take 2 Greg KH
2003-04-15 19:19   ` David Brownell
2003-04-16  4:45     ` Greg KH
2003-04-16  6:22   ` Frederic Lepied
2003-04-18 22:19     ` Greg KH
  -- strict thread matches above, loose matches on Subject: below --
2003-04-14 22:46 Greg KH
2003-04-15 19:19 ` David Brownell
2003-04-16  0:01 ` Perez-Gonzalez, Inaky
2003-04-16  4:45 ` Greg KH
2003-04-16  6:22 ` Frederic Lepied
2003-04-18 22:19 ` Greg KH
2003-04-18 22:21 ` Greg KH
2003-04-19 18:22 ` David Brownell
2003-04-19 18:22 ` David Brownell
2003-04-16  0:01 Perez-Gonzalez, Inaky
2003-04-18 22:21 ` Greg KH

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.