restricted users

2008-09-11 Thread Don Wilde
in advance for your suggestions! Please reply including my direct address as I am not on the list subscription. -- Don Wilde ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send

sendmail CLIENT_OPTIONS

2009-10-05 Thread Don Wilde
e configs, please forgive me for not including them. No other changes have been made to the mc file. Thanks in advance! :D -- -- Don Wilde " Engineering the Future " http://www.EngineeringJobFuture.com ___ freebsd-questions@freebsd.org ma

Re: sendmail CLIENT_OPTIONS

2009-10-05 Thread Don Wilde
On Mon, Oct 5, 2009 at 8:27 PM, Bernt Hansson wrote: > Don Wilde said the following on 2009-10-06 02:48: >> >> Hello, folks - >> >> I am setting up the sendmail on my 7.2-STABLE system, and I cannot get >> it to listen to my live server address beside

Re: sendmail CLIENT_OPTIONS

2009-10-06 Thread Don Wilde
On Tue, Oct 6, 2009 at 2:26 AM, Oliver Fromme wrote: > Don Wilde wrote: >  > I am setting up the sendmail on my 7.2-STABLE system, and I cannot get >  > it to listen to my live server address besides the localhost. >  > >  > I've added >  >                

bug in Packages dependency system in /stand/sysinstall

2002-11-16 Thread Don Wilde
ilure. The system used to just fail on the primary package install and continue to let the rest of my packages be installed. Now, I can't see what package it is that's not getting anywhere. Suggestions? -- Don Wilde http://www.Silver-Lynx.com Silver Lynx Creativity Learning Expe

unsetting a Port's configuration

2008-03-08 Thread Don Wilde
wiping the makefile and re-CVSupping, but that does seem like the long way 'round. Thanks in advance! -- Don Wilde ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any ma

Re: unsetting a Port's configuration

2008-03-08 Thread Don Wilde
On Sat, Mar 8, 2008 at 10:06 AM, D Hill <[EMAIL PROTECTED]> wrote: > On Sat, 8 Mar 2008 at 09:32 -0600, [EMAIL PROTECTED] confabulated: > > > Hello, all - > > > > When building a port, specifically in this case qdvdauthor, I run into a > > setup issue that makes me want to redo the configuration

Re: unsetting a Port's configuration

2008-03-08 Thread Don Wilde
I DID see that whoopsie in the previous post, thanks Giorgos! ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"

shell programming challenge

2004-11-25 Thread Don Wilde
hing like: xterm -e bash <(echo ./ticktock) & When I do this, the program works & interacts, but the xterm dies upon completion of ticktock or INT. I also do not seem to be able to use the --rcfile switch as a bash option, although I can add KEY=VALUE pairs before the xter

Re: shell programming challenge

2004-11-25 Thread Don Wilde
Adam Fabian wrote: On Thu, Nov 25, 2004 at 10:26:38AM -0700, Don Wilde wrote: Hey, folks - I need to find a way to kick off an xterm running BASH and then execute a program within that xterm, but NOT close the new xterm after the program finishes. Another desirable thing would be to also be able

Re: shell programming challenge

2004-11-25 Thread Don Wilde
J65nko BSD wrote: On Thu, 25 Nov 2004 10:26:38 -0700, Don Wilde <[EMAIL PROTECTED]> wrote: Hey, folks - I need to find a way to kick off an xterm running BASH and then execute a program within that xterm, but NOT close the new xterm after the program finishes. [snip] xterm -hold -e

Re: shell programming challenge

2004-11-25 Thread Don Wilde
here *is* an option to keep the term open after executing a program. Yes, as another shared: -hold. Unfortunately, it doesn't return to shell prompt. The program is interactive until the program terminates, but I don't get a prompt back from the underlying shell. -- Don Wilde

Re: shell programming challenge

2004-11-26 Thread Don Wilde
ne (eval "blah...") before running. These will not be just shell scripts, they will be tool programs and x applications. Didn't want to do that because of the risk of leaving junk in /tmp. -- Don Wilde -> Silver Lynx <-- Raising

Re: shell programming challenge

2004-12-03 Thread Don Wilde
Resolved: After a bit more work and lots of good suggestions, I came up with xterm -e bash --rcfile .myrcfile -i -c "./ticktock && exec bash" & It does everything I was expecting (assuming your regular .bashrc doesn't trash the things you set up in the first environ