On 11/26/06, <b class="gmail_sendername">Damien Cassou</b> &lt;<a href="mailto:damien.cassou@laposte.net" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">damien.cassou@laposte.net</a>&gt; wrote:<div>
<span class="gmail_quote"></span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi,<br><br>working on a new image for web developers, I'm looking for a way to<br>install seaside in a script without waiting for the image creator to<br>enter admin name and password.</blockquote><div><br>Assuming you're using the Installer (which I think is at 
<a href="http://squeaksource.com/Installer.html">squeaksource.com/Installer.html</a> , but SqueakSource is down and I'm on vacation, so I can't check) you just do use #answer:with: before you call #install:. E.g.,<br><br>
| squeaksource |<br>squeaksource := Installer repository: '<a href="http://www.squeaksource.com/">http://www.squeaksource.com/</a>'.<br>(squeaksource project: 'Seaside')<br>&nbsp;&nbsp;&nbsp;&nbsp; answer: '*administrator*' with: 'seaside';<br>
&nbsp;&nbsp;&nbsp;&nbsp; answer: '*password*' with: 'admin';<br>&nbsp;&nbsp;&nbsp;&nbsp; install: 'Seaside2.6b'.<br><br>--Benjamin<br></div></div>