13 lines
353 B
Bash
13 lines
353 B
Bash
#!/bin/bash
|
|
|
|
echo "Content-type: text/html"
|
|
echo ""
|
|
echo "<html><head><title>OpenGnsys Client $(/opt/opengnsys/functions/ogGetIpAddress)</title>"
|
|
echo " <meta charset='utf-8'>"
|
|
echo "</head><body>"
|
|
|
|
echo "<h1>Ocurrió un error durante el arranque del agente</h1>"
|
|
|
|
echo "<p>Consulte el log del agente para más información</p>"
|
|
echo "</body></html>"
|