mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			817 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			817 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| // MYSQL Check - FIXME
 | |
| // 1 UNKNOWN
 | |
| 
 | |
| include( "config.php" );
 | |
| 
 | |
| if (!isset($sql_file)) {
 | |
| 	$sql_file = 'build.sql';
 | |
| }
 | |
| $sql_fh = fopen( $sql_file, 'r' );
 | |
| if ($sql_fh === FALSE) {
 | |
| 	echo( "ERROR: Cannot open SQL build script " . $sql_file . "\n" );
 | |
| 	exit(1);
 | |
| }
 | |
| 
 | |
| $connection = mysql_connect( $config['db_host'], $config['db_user'], $config['db_pass'] );
 | |
| if ($connection === FALSE) {
 | |
| 	echo( "ERROR: Cannot connect to database: " . mysql_error() . "\n" );
 | |
| 	exit(1);
 | |
| }
 | |
| 
 | |
| mysql_select_db( $config['db_name']  );
 | |
| 
 | |
| while( !feof( $sql_fh ) ) {
 | |
|   $line = fgetss( $sql_fh );
 | |
|   if(!empty($line))
 | |
|   {
 | |
|     $creation = mysql_query( $line );
 | |
|     if( !$creation ) {
 | |
|       echo( "WARNING: Cannot execute query (" . $line . "): " . mysql_error() . "\n" );
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| fclose($sql_fh);
 | |
| 
 | |
| include("includes/sql-schema/update.php");
 | |
| 
 | |
| ?>
 |