[gentoo-user] Emerging asterisk-addons loops endlessly

2006-07-03 Thread Todor Pirov
Hello,
I'm trying to emerge asterisk-addons-1.2.1 with the h323 flag but after some 
compiling it begins to output
 
Waiting for chan_h323.o.lock to be removed
Waiting for ooCmdChannel.o.lock to be removed
Waiting for ooh323cDriver.o.lock to be removed
Waiting for chan_h323.o.lock to be removed
Waiting for ooCmdChannel.o.lock to be removed
Waiting for ooh323cDriver.o.lock to be removed

in an endless loop. I did a find in /var/tmp/portage/asterisk-addons-1.2.1 but 
no such files exist.
Prior to the upgrade of Asterisk to 1.2.9_p1 I was using it with 
asterisk-oh323 but it is unmerged now.
Any ideas where could be the problem?

TIA
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] : [OT: ICQ]

2006-07-14 Thread Todor Pirov
On Friday 14 July 2006 12:24, Nico Schümann wrote:
> The only thing I miss is the perfect ICQ
> client.

Sorry for letting the thread go faraway of the original topic but IMHO 
net-im/sim is very close to the term "perfect ICQ client".

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Restart network interfaces over SSH

2006-07-29 Thread Todor Pirov
Hello,
I have the following script which exchanges the IPs of two network adapters:

[code]
#!/bin/bash

/usr/bin/cp /etc/conf.d/net-2 /etc/conf.d/net;
/etc/init.d/net.eth1 stop;
/etc/init.d/net.eth0 restart;
/etc/init.d/net.eth1 start
[/code]

and a similar one with "/usr/bin/cp /etc/conf.d/net-1 /etc/conf.d/net;" in it 
to restore the original situation. In net-1 and net-2 config files the IPs of 
eth0 and eth1 are substituted.
The problem is that when I run the script from eth1 via SSH it stops executing 
when the interface stops. If it is ran from eth0 it executes normally.
Is there a way to tell bash not to stop executing commands if connection is 
broken or some more convenient gentoo-style way to exchange the IPs from SSH.
TIA

Todor
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Restart network interfaces over SSH

2006-07-29 Thread Todor Pirov
On Saturday 29 July 2006 12:25, Raymond Lewis Rebbeck wrote:
> How about running the script in a screen session?

Yes, "screen -d" is a solution. Thanks for the tip.

Todor
-- 
gentoo-user@gentoo.org mailing list