Re: [qmailtoaster] upgrade script errors - Still no love

2006-08-25 Thread Eric \Shubes\
Ron Jones wrote: I got exactly the same response within /opt/qmt-sandbox/usr/src/: /opt/qmt-sandbox/usr/src/qmt/ ? /opt/qmt-sandbox/usr/src/qmt/caller Just to let the list know, Ron and I took this off list and the new upgrade script has been successfully tested on CentOS4 64-bit. In

Re: [qmailtoaster] upgrade script errors - Still no love

2006-08-23 Thread Eric \Shubes\
Ron Jones wrote: # ls -l /bin/bash -rwxr-xr-x 1 root root 772760 Feb 17 2005 /bin/bash # ls -l /lib/libtermcap.so.2 lrwxrwxrwx 1 root root 19 Sep 29 2005 /lib/libtermcap.so.2 - libtermcap.so.2.0.8 # ls -l /lib/libdl.so.2 lrwxrwxrwx 1 root root 14 Mar 22 06:00 /lib/libdl.so.2 -

Re: [qmailtoaster] upgrade script errors - Still no love

2006-08-23 Thread Erik Espinoza
would and I'll see if I can test build for you. George Sweetnam. - Original Message - From: Eric Shubes [EMAIL PROTECTED] To: qmailtoaster-list@qmailtoaster.com Cc: [EMAIL PROTECTED] Sent: Wednesday, August 23, 2006 3:05 PM Subject: Re: [qmailtoaster] upgrade script errors - Still no love

Re: [qmailtoaster] upgrade script errors - Still no love

2006-08-23 Thread Eric \Shubes\
George Sweetnam wrote: Eric, You should include a link to your website (test installation qmt) in your sig file. I had some time this afternoon on a fedora5 box and was going to run it. Repost the link if you would and I'll see if I can test build for you. George Sweetnam. Thanks,

RE: [qmailtoaster] upgrade script errors - Still no love

2006-08-22 Thread Ron Jones
Did you see it the script create /usr/lib64 and /lib64 directories? Do /opt/qmt-sandbox/usr/lib64 and /opt/qmt-sandbox/lib64 directories exist I'm guessing not. Actually they do: /opt/qmt-sandbox/lib64/ /opt/qmt-sandbox/usr/lib64/ Are both there What does # uname -m tell you? I've probably got

Re: [qmailtoaster] upgrade script errors - Still no love

2006-08-22 Thread Eric \Shubes\
Ron Jones wrote: Did you see it the script create /usr/lib64 and /lib64 directories? Do /opt/qmt-sandbox/usr/lib64 and /opt/qmt-sandbox/lib64 directories exist I'm guessing not. Actually they do: /opt/qmt-sandbox/lib64/ /opt/qmt-sandbox/usr/lib64/ Are both there What does # uname -m tell

RE: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Ron Jones
[EMAIL PROTECTED] qmt-sandbox]# ldd bin/bash libtermcap.so.2 = /lib64/libtermcap.so.2 (0x003aaf70) libdl.so.2 = /lib64/libdl.so.2 (0x003c9cc0) libc.so.6 = /lib64/tls/libc.so.6 (0x003c9c90) /lib64/ld-linux-x86-64.so.2

RE: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Ron Jones
I used two 'test' scripts when I was testing this problem: # cat caller echo about to call p1=parm1 p2=parm2 p3=parm3 chroot /opt/qmt-sandbox \ /usr/src/qmt/called \ $p1 \ $p2 \ $p3 echo returned from called # cat called echo 0=$0 1=$1 2=$2 3=$3 exit Try creating caller,

Re: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Eric \Shubes\
Ron Jones wrote: I used two 'test' scripts when I was testing this problem: # cat caller echo about to call p1=parm1 p2=parm2 p3=parm3 chroot /opt/qmt-sandbox \ /usr/src/qmt/called \ $p1 \ $p2 \ $p3 echo returned from called # cat called echo 0=$0 1=$1 2=$2 3=$3 exit Try

RE: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Ron Jones
Did you create the 'called' script in the same manner? Oops.. Lol No Ok, what I've just done is gone to /usr/src/qmt; Cp caller called Then: [EMAIL PROTECTED] qmt]# ./caller About to call Chroot: cannot run command '/usr/src/qmt/called' : No such file or directory Returned from called

Re: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Eric \Shubes\
Ron Jones wrote: Did you create the 'called' script in the same manner? Oops.. Lol No Ok, what I've just done is gone to /usr/src/qmt; Cp caller called 'caller' is different than 'called'. 'caller' should be: # cat /opt/qmt-sandbox/usr/src/qmt/called echo 0=$0 1=$1 2=$2 3=$3 exit

RE: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Ron Jones
Then: [EMAIL PROTECTED] qmt]# ./caller About to call Chroot: cannot run command '/usr/src/qmt/called' : No such file or directory Returned from called 0=./caller 1= 2= 3= 'called' needs to be withing the chroot'd environment, i.e. it needs to be in /opt/qmt-sandbox/usr/src/qmt. Make

Re: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Eric \Shubes\
Ron Jones wrote: Then: [EMAIL PROTECTED] qmt]# ./caller About to call Chroot: cannot run command '/usr/src/qmt/called' : No such file or directory Returned from called 0=./caller 1= 2= 3= 'called' needs to be withing the chroot'd environment, i.e. it needs to be in

Re: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Eric \Shubes\
Eric Shubes wrote: Ron Jones wrote: Ok... [EMAIL PROTECTED] qmt]# chroot /opt/qmt-sandbox Returned: chroot: cannot run command '/bin/bash' : No such file or directory Ron, That's basically the same error I experienced during testing (I'm not getting it now, on two separate boxes). I

Re: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Erik Espinoza
Eric, This will fail because your sandbox doesn't copy (link?) the /lib64 and /usr/lib64 directories which contain the 64 bit libs. Your script is not 64-bit safe yet and will need some work and testing. Thanks, Erik On 8/21/06, Eric Shubes [EMAIL PROTECTED] wrote: Eric Shubes wrote: Ron

Re: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Eric \Shubes\
That would do it all right. ;) I wasn't aware that these directories existed! It's going to take me a little while to do fix this right. I'll let you know when it's ready, hopefully by tomorrow. Thanks, Erik! P.S. What took you so long to chime in on this? ;) Erik Espinoza wrote: Eric,

Re: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Erik Espinoza
P.S. What took you so long to chime in on this? I've been trying to field ones that hadn't been responded too by the major users such as you and Jake. I'll try to pay more attention. Erik - QmailToaster hosted by: VR

Re: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Eric \Shubes\
Erik Espinoza wrote: P.S. What took you so long to chime in on this? I've been trying to field ones that hadn't been responded too by the major users such as you and Jake. I'll try to pay more attention. Erik blushes I'm just yankin' your chain. Me a major user? Not compared to you and

Re: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Eric \Shubes\
Erik Espinoza wrote: Eric, This will fail because your sandbox doesn't copy (link?) the /lib64 and /usr/lib64 directories which contain the 64 bit libs. Your script is not 64-bit safe yet and will need some work and testing. Thanks, Erik On 8/21/06, Eric Shubes [EMAIL PROTECTED] wrote: Eric

RE: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Ron Jones
I got exactly the same response within /opt/qmt-sandbox/usr/src/: /opt/qmt-sandbox/usr/src/qmt/ ? /opt/qmt-sandbox/usr/src/qmt/caller - QmailToaster hosted by: VR Hosted http://www.vr.org

RE: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Ron Jones
Eric, This will fail because your sandbox doesn't copy (link?) the /lib64 and /usr/lib64 directories which contain the 64 bit libs. Your script is not 64-bit safe yet and will need some work and testing. Thanks, Erik Oops :) Well, I can't write, but I can test.

RE: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Ron Jones
That would do it all right. ;) I wasn't aware that these directories existed! It's going to take me a little while to do fix this right. I'll let you know when it's ready, hopefully by tomorrow. If you don't have a 64-bit box to play with, you're welcome to use mine. Ron

RE: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Ron Jones
Ok Ron. A 64-bit compatible (I hope) script is available now. Please download it and give it a try. It shouldn't hurt anything if it doesn't work (but you do have a backup, right?). You'll need to recreate the sandbox when you run it. You should see the /usr/lib64 and /lib64 directories

Re: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Eric \Shubes\
Ron Jones wrote: That would do it all right. ;) I wasn't aware that these directories existed! It's going to take me a little while to do fix this right. I'll let you know when it's ready, hopefully by tomorrow. If you don't have a 64-bit box to play with, you're welcome to use mine. Ron

RE: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Ron Jones
Thanks for the offer, Ron. I don't have one, but will keep you in mind should the need arise. I guess we're using yours anyhow! :) Well, it's running right now... We'll see ;) - QmailToaster hosted by: VR Hosted

Re: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Eric \Shubes\
Ron Jones wrote: Thanks for the offer, Ron. I don't have one, but will keep you in mind should the need arise. I guess we're using yours anyhow! :) Well, it's running right now... We'll see ;) Has it started into the compiles yet, or is it still building the sandbox? -- -Eric 'shubes'

RE: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Ron Jones
Has it started into the compiles yet, or is it still building the sandbox? still building the sandbox, /usr/share That seems to take a while - QmailToaster hosted by: VR Hosted http://www.vr.org

RE: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Ron Jones
Last step in the sandbox /usr/var Now it's REALLY time to go get coffee - QmailToaster hosted by: VR Hosted http://www.vr.org - To unsubscribe, e-mail:

RE: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Ron Jones
Has it started into the compiles yet, or is it still building the sandbox? It errored out again... chroot: cannot run command '/usr/src/qmt/qmt-build-rpms.sh' : No such file or directory Build failed, Exiting. Well... Is there a log file somewhere that may give a more specific reason behind

Re: [qmailtoaster] upgrade script errors - Still no love

2006-08-21 Thread Eric \Shubes\
Ron Jones wrote: Has it started into the compiles yet, or is it still building the sandbox? It errored out again... chroot: cannot run command '/usr/src/qmt/qmt-build-rpms.sh' : No such file or directory Build failed, Exiting. Well... Is there a log file somewhere that may give a more

Re: [qmailtoaster] upgrade script errors - Still no love

2006-08-20 Thread Eric \Shubes\
Ron Jones wrote: I don't have reason to believe that the No such file problem is fixed, but I'd like you to do this (again): .) delete the scripts you have .) reboot the server if at all feasible. /etc/mtab might be a bit wacky with the abnormal exits, and I just want to eliminate that from a

RE: [qmailtoaster] upgrade script errors - Still no love

2006-08-20 Thread Ron Jones
This error drove me nuts one time testing. I can't yet remember the solution. Unfortunately I didn't ask the question on my local LUG or I'd have posted the answer. I really need to make notes sometimes. Yes, I know the feeling, I've got to document more than I do Ok, let's see if we can nail

Re: [qmailtoaster] upgrade script errors - Still no love

2006-08-20 Thread Eric \Shubes\
Ron Jones wrote: This error drove me nuts one time testing. I can't yet remember the solution. Unfortunately I didn't ask the question on my local LUG or I'd have posted the answer. I really need to make notes sometimes. Yes, I know the feeling, I've got to document more than I do Ok, let's

RE: [qmailtoaster] upgrade script errors - Still no love

2006-08-20 Thread Ron Jones
Oops. I forgot the format. Try # chroot /opt/qmt-sandbox That should either give you a shell prompt in the named directory. If it tells you it can't find shell, that the same error as we're seeing in the script. We'll take it from there. Ok... [EMAIL PROTECTED] qmt]# chroot /opt/qmt-sandbox

Re: [qmailtoaster] upgrade script errors - Still no love

2006-08-20 Thread Eric \Shubes\
Ron Jones wrote: Ok... [EMAIL PROTECTED] qmt]# chroot /opt/qmt-sandbox Returned: chroot: cannot run command '/bin/bash' : No such file or directory Ron, That's basically the same error I experienced during testing (I'm not getting it now, on two separate boxes). I expected such. At least

Re: [qmailtoaster] upgrade script errors - Still no love

2006-08-20 Thread Eric \Shubes\
Ron Jones wrote: Oops. I forgot the format. Try # chroot /opt/qmt-sandbox That should either give you a shell prompt in the named directory. If it tells you it can't find shell, that the same error as we're seeing in the script. We'll take it from there. Ok... [EMAIL PROTECTED] qmt]# chroot

RE: [qmailtoaster] upgrade script errors - Still no love

2006-08-20 Thread Ron Jones
I just found an easier way to check this out. You should be able to just # cd /opt/qmt-sandbox # ldd bin/bash libtermcap.so.2 = /lib/libtermcap.so.2 (0x002bf000) libdl.so.2 = /lib/libdl.so.2 (0x00294000) libc.so.6 = /lib/tls/libc.so.6 (0x00168000) /lib/ld-linux.so.2 (0x0014f000) What do you get?

Re: [qmailtoaster] upgrade script errors - Still no love

2006-08-20 Thread Eric \Shubes\
Ron Jones wrote: I just found an easier way to check this out. You should be able to just # cd /opt/qmt-sandbox # ldd bin/bash libtermcap.so.2 = /lib/libtermcap.so.2 (0x002bf000) libdl.so.2 = /lib/libdl.so.2 (0x00294000) libc.so.6 = /lib/tls/libc.so.6 (0x00168000) /lib/ld-linux.so.2 (0x0014f000)

Re: [qmailtoaster] upgrade script errors - Still no love

2006-08-20 Thread Eric \Shubes\
Ron Jones wrote: I just found an easier way to check this out. You should be able to just # cd /opt/qmt-sandbox # ldd bin/bash libtermcap.so.2 = /lib/libtermcap.so.2 (0x002bf000) libdl.so.2 = /lib/libdl.so.2 (0x00294000) libc.so.6 = /lib/tls/libc.so.6 (0x00168000) /lib/ld-linux.so.2 (0x0014f000)