source: MondoRescue/branches/2.2.10/mindi/rootfs/sbin/wait-for-petris@ 2445

Last change on this file since 2445 was 2445, checked in by Bruno Cornec, 15 years ago

r3513@localhost: bruno | 2009-10-02 00:09:16 +0200

  • Not using busybox for mindi anymore (start - step needed for tests)
  • Property svn:keywords set to Id
File size: 453 bytes
Line 
1#!/bin/sh
2#
3# Startup Petris
4#
5
6# Say what we are doing
7echo -n "Waiting for petris"
8# Wait for the libraries to become available...
9while [ ! -f /lib/libncurses.so.5 ] ; do
10 echo -n "."
11 sleep 2
12done
13sleep 2
14# ...then wait for petris
15which petris > /dev/null
16while [ $? -ne 0 ] ; do
17 echo -n "."
18 sleep 1
19 which petris > /dev/null
20done
21# Keep running petris until it's killed or crashes
22while [ 0 -eq 0 ] ; do
23 sleep 1
24 petris
25done
26exit 0
Note: See TracBrowser for help on using the repository browser.