up vote 2 down vote favorite
2
share [g+] share [fb]

When i run this (using the update-rc method) on boot, it shows a browser (w3m) pointing to the page and boot halts until I quit the browser. Is there a way to run it silently on boot? I looked at the manpage and it says nothing, so probably it's not supposed to work that way... Am I doing something wrong?

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

Use:

git-instaweb -b /bin/true

See the manual page for more options.

link|improve this answer
How does that work ? /bin/true is not mentioned on the manual... – Doppelganger Aug 11 '09 at 4:25
The -b option selects the browser to be opened once instaweb is running. By setting this to /bin/true, it forces the process to exit without further complaint/notification since /bin/true always returns immediately with a status code indicating success. See ss64.com/bash/true.html for futher info. – Tim Henigan Aug 11 '09 at 17:01
feedback

git-instaweb sets up gitweb into {project folder}/.git/gitweb folder, so you could simply call the web server with the config file generated inside that folder.

link|improve this answer
feedback

Adding --start works as expected, but I'm still not sure if this is the right way to solve it.

link|improve this answer
You can edit your question to add this instead of having to post an answer to your own question simply to add another detail. Not nit picking, just letting you know for future cases. – Jorge Israel Peña Aug 11 '09 at 4:03
I knew I can edit, but I wasn't sure about the usual way to go when you find your own answer. Now I know, so thanks :) – Doppelganger Aug 11 '09 at 4:33
feedback

It sounds like you are using the wrong tool for the job.

git-instaweb is designed for quick one-off browsing.

Try gitweb instead which is designed to be run as a service.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.