Re: overnight upgrade interrupted by questions

2008-04-18 Thread Chris Whitehouse
Mel wrote: On Tuesday 15 April 2008 22:10:41 Chris Whitehouse wrote: Do something like [sorry not exact syntax as I don't have access to a freebsd machine]: foreach i (`cat portlist`) foreach? cd /usr/ports/$i && make config You should 'make config-conditional' to save yourself some work. mak

Re: overnight upgrade interrupted by questions

2008-04-18 Thread RW
On Tue, 15 Apr 2008 20:02:19 +0200 Mel <[EMAIL PROTECTED]> wrote: > If you wanted to script the first case, you'd do the following in > every origin that needs updating: I have a similar script, that works globally, recursing down from each out-of-date port through any missing origins. If you

Re: overnight upgrade interrupted by questions

2008-04-15 Thread Mel
On Tuesday 15 April 2008 22:10:41 Chris Whitehouse wrote: > Do something like [sorry not exact syntax as I don't have access to a > freebsd machine]: > foreach i (`cat portlist`) > foreach? cd /usr/ports/$i && make config You should 'make config-conditional' to save yourself some work. make confi

Re: overnight upgrade interrupted by questions

2008-04-15 Thread Chris Whitehouse
Mel wrote: On Tuesday 15 April 2008 15:26:42 Edward Ruggeri wrote: A lot of people would reply that they'd like to configure the ports themselves before launching the installation, leading people to suggest scripts such as: #!/bin/sh plist=`pkg_version -ovl'<' |awk '{ print $1 }'` for porg in $

Re: overnight upgrade interrupted by questions

2008-04-15 Thread Mel
On Tuesday 15 April 2008 15:26:42 Edward Ruggeri wrote: > A lot of people would reply that they'd like to configure the ports > themselves before launching the installation, leading people to > suggest scripts such as: > > #!/bin/sh > plist=`pkg_version -ovl'<' |awk '{ print $1 }'` > for porg in $p

Re: overnight upgrade interrupted by questions

2008-04-15 Thread Edward Ruggeri
A lot of people would reply that they'd like to configure the ports themselves before launching the installation, leading people to suggest scripts such as: #!/bin/sh plist=`pkg_version -ovl'<' |awk '{ print $1 }'` for porg in $plist ; do cd /usr/ports/${porg} && make config-recursive done B

Re: overnight upgrade interrupted by questions

2008-04-15 Thread Manolis Kiagias
Pollywog wrote: I did 'portupgrade -aP' last night but this morning I found that one package had some questions for me about how I want to compile the package (wants to know which options I want). This meant that no packages were compiled since the cups package asked questions. Is there a