This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/ash | |
echo "Expires: Sun, 27 Feb 1972 08:00:00 GMT" | |
echo "Pragma: no-cache" | |
echo "Cache-Control: no-cache" | |
echo "Content-Type: text/html" | |
echo | |
echo "<HTML><HEAD><META HTTP-EQUIV=\"Content-type\" CONTENT=\"text/html; charset=UTF-8\"></HEAD><BODY><PRE>" | |
echo "[++++++++++++++++++++++ Advanced EventLog (AEL) Retrieved Reports ++++++++++++++++++++++]" | |
for i in 9 8 7 6 5 4 3 2 1 0; do | |
if [ -e /var/fs/shared/eventlog/logs/debug.log.$i ] ; then | |
cat /var/fs/shared/eventlog/logs/debug.log.$i | |
fi | |
done | |
echo "[+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++]" | |
echo "" | |
echo "" | |
echo "[++++++++++++++++++++++ Advanced EventLog (AEL) Configurations ++++++++++++++++++++++]" | |
rob call applications.eventlog getAELConfiguration n | |
echo "[+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++]" | |
echo "</PRE></BODY></HTML>" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment