#!/bin/sh
if [ -f /cfg/activeapp.txt ]
then
    cat /cfg/activeapp.txt
else
    echo "app1"
fi
