Maybe I don't understand this fully, but what would make either button on my 54GL after boot, just close all my connections? And I can't ssh back in, have to unplug.
To get my button scripts to run I had to change this in /etc/hotplug2-init.rules:
from
SUBSYSTEM ~~ button {
exec kill -USR1 1 ;
}
to
SUBSYSTEM ~~ button {
exec /sbin/hotplug-call button;
}
And my scripts in /etc/hotplug.d at least run now. Was it always killing all my procs?
I would think this rule in /etc/hotplug2.rules would run (Edit: I think is does run too):
SUBSYSTEM ~~ (net|button|usb) {
exec /sbin/hotplug-call %SUBSYSTEM%;
}
/etc/hotplug2.rules includes /etc/hotplug2-init.rules so is the first rule in the init file always hit?
Thanks.
(Last edited by pricejm on 5 Jan 2008, 18:57)