xentaur
annotate files/xenomips.sh @ 31:532f2ed25f70
fontsize + shapes color
author | nata |
---|---|
date | Sat Sep 22 00:09:45 2007 +0300 (2007-09-22) |
parents | 54c51dea92a2 |
children | 65e80fabc89c |
rev | line source |
---|---|
igor@0 | 1 #!/bin/sh |
igor@0 | 2 |
igor@7 | 3 if grep -qi xenomips /proc/cmdline |
igor@7 | 4 then |
igor@7 | 5 DYNAMIPS_WORKDIR="/xenomips/config" |
igor@7 | 6 DYNAMIPS_ARGS=`cat /proc/cmdline | sed 's/.*xenomips="//; s/".*//'` |
igor@7 | 7 cd "$DYNAMIPS_WORKDIR" |
igor@13 | 8 screen -e '^xx' -d -m sh -c "while true; do dynamips $DYNAMIPS_ARGS ; done" |
igor@7 | 9 else |
igor@7 | 10 /etc/init.d/quagga start |
igor@12 | 11 screen -e '^xx' -d -m sh -c 'while true; do vtysh; done' |
igor@7 | 12 fi |
igor@0 | 13 |