#!/bin/sh

if test -e /app/test_index; then
    cat /app/test_index 
    exit 0
else
    echo 'File /app/test_index is missing.' >&2
    exit 1
fi
