#!/usr/bin/php
<?php
/*
SVN Access Manager - a subversion access rights management tool
Copyright (C) 2008 Thomas Krieger <hide@address.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/*
File: cron_createAccessFiles.php
$LastChangedDate: 2010-07-15 19:49:46 +0200 (Thu, 15 Jul 2010) $
$LastChangedBy: kriegeth $
$Id: cron_createAccessFiles.php 470 2010-07-15 17:49:46Z kriegeth $
!!!!!=========================================================!!!!!
Please change $INCLUDEPATH according to your installation
!!!!!=========================================================!!!!!
*/
if ( file_exists ( realpath ( "./config/config.inc.php" ) ) ) {
require( "./config/config.inc.php" );
} elseif( file_exists ( realpath ( "../config/config.inc.php" ) ) ) {
require( "../config/config.inc.php" );
} elseif( file_exists( "/etc/svn-access-manager/config.inc.php" ) ) {
require( "/etc/svn-access-manager/config.inc.php" );
} else {
die( "can't load config.inc.php. Check your installation!\n'" );
}
#$INCLUDEPATH = ".";
#$INCLUDEPATH = "/home/kriegeth/svn_access_manager";
$INCLUDEPATH = isset( $CONF['install_base'] ) ? $CONF['install_base'] : "";
require ("$INCLUDEPATH/include/variables.inc.php");
require ("$INCLUDEPATH/config/config.inc.php");
require ("$INCLUDEPATH/include/functions.inc.php");
require ("$INCLUDEPATH/include/db-functions-adodb.inc.php");
require ("$INCLUDEPATH/include/createAuthFiles.php");
ini_set( 'max_execution_time', '3600' );
ini_set( 'display_errors', 'Off');
ini_set( 'log_errors', 'On');
ini_set( 'error_log', '/var/tmp/cron_createAccessFiles.log' );
ini_set( 'error_reporting', 'E_ALL' );
initialize_i18n();
if( $CONF['createAccessFile'] == 'YES' ) {
$dbh = db_connect();
$tRetAccess = createAccessFile( $dbh );
if( $tRetAccess['error'] != 0 ) {
print $tRetAccess['errormsg']." \n";
}
db_disconnect( $dbh );
}
if( $CONF['createUserFile'] == 'YES' ) {
$dbh = db_connect();
$tRetAuthUser = createAuthUserFile( $dbh );
if( $tRetAuthUser['error'] != 0 ) {
print $tRetAuthUser['errormsg']."\n";
}
db_disconnect( $dbh );
}
if( $CONF['createViewvcConf'] == "YES" ) {
$dbh = db_connect();
$tRetViewvcConf = createViewvcConfig( $dbh );
if( $tRetViewvcConf['error'] != 0 ) {
print $tRetViewvcConf['errormsg']."\n";
}
db_disconnect( $dbh );
}
exit;
?>