[ Index ] |
PHP Cross Reference of Unnamed Project |
[Summary view] [Print] [Text view]
1 <?php 2 3 /** 4 5 * Test la connexion au serveur ntp 6 * @Version $Id: test_ntp.php 4764 2009-11-08 17:31:37Z crob $ 7 * @Projet LCS / SambaEdu 8 * @auteurs Philippe Chadefaux MrT 9 * @Licence Distribue selon les termes de la licence GPL 10 * @note 11 * Modifications proposées par Sébastien Tack (MrT) 12 * Optimisation du lancement des scripts bash par la technologie asynchrone Ajax. 13 14 15 */ 16 17 /** 18 19 * @Repertoire: /tests/ 20 * file: test_ntp.php 21 */ 22 23 24 require_once ('entete_ajax.inc.php'); 25 $ok_ntp=system("/usr/sbin/ntpdate -q $ntpserv >/dev/null", $retval); 26 27 if ($retval=="0") { 28 $ok="1"; 29 } else { 30 $ok="0"; 31 } 32 die($ok); 33 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Tue Mar 17 22:47:18 2015 | Cross-referenced by PHPXref 0.7.1 |