service.cfg
<?php
$URL="https://raw.githubusercontent.com/panticz/icinga/master/objects/service.cfg";
echo "wget -q $URL -O /etc/icinga/objects/service.cfg";
echo "
"; $c = curl_init(); curl_setopt($c, CURLOPT_URL, $URL); curl_setopt($c, CURLOPT_RETURNTRANSFER, 1); echo htmlspecialchars(curl_exec($c)); curl_close($c); echo "
";
?>