mirror of
https://github.com/glest/glest-source.git
synced 2025-02-24 19:52:25 +01:00
19 lines
496 B
PHP
19 lines
496 B
PHP
<?php
|
|
// Copyright (C) 2012 Mark Vejvoda, Titus Tscharntke and Tom Reynolds
|
|
// The Megaglest Team, under GNU GPL v3.0
|
|
// ==============================================================
|
|
|
|
// This script can be invoked directly by a cron job on a regular basis:
|
|
// /path/to/php -f /path/to/script.php
|
|
|
|
define( 'INCLUSION_PERMITTED', true );
|
|
require_once( 'config.php' );
|
|
require_once( 'functions.php' );
|
|
|
|
define( 'DB_LINK', db_connect() );
|
|
|
|
cleanupServerList();
|
|
|
|
db_disconnect( DB_LINK );
|
|
?>
|