#!/bin/sh

# This script runs the argument passed into it forever until FA_respawn dies.
# This is our hokey little replacement for inittab. :)
# We symlink to it so we get individual names while running multiple children.
# (e.g. - KA_SerialManager is actually a symlink to this file)

while true; do
	$1
done

exit 0
