41 lines
1.5 KiB
Perl
Executable File
41 lines
1.5 KiB
Perl
Executable File
#!/usr/bin/perl
|
|
# ldapcache_backup.cgi
|
|
# Backup LDAP Cache Services
|
|
# STTA Rev. 1.3 Copyright (c) 2001-2004 Jesús Pérez Lorenzo --- license GNU GPL
|
|
# stta: (@#) 1.31051043346- [2004_01_29_102036]
|
|
|
|
require './stta-lib.pl';
|
|
&foreign_require("proc", "proc-lib.pl");
|
|
&headerstta($text{'index_ldapcachebackup'}, "", "ldapcachebackup",undef,1,0,"$text{'headpage_right'}"."$text{'head_logout'}",undef,undef,"$text{head_below}" );
|
|
if ( $config{'is_ldapcache'} ne "true" ) { &footCacheHere; exit }
|
|
|
|
print "<hr><p>\n";
|
|
print "<table width=100% border>\n";
|
|
print "<tr $tb> <td><font color='$revtext'><b>$text{'titidx_ldapcachebackup'}</b></td> </tr>\n";
|
|
print "<tr $cb> <td><table width=100%>\n";
|
|
print "<hr>\n";
|
|
print "<tr><td>\n";
|
|
$linstr=$config{'ldapcache_backup'}." ".$config{'ldapcache_backup_dir'}." ";
|
|
eval ("\$str=\"$linstr\"");
|
|
$exec_str="ldapcache";
|
|
$cmd_str="bakup";
|
|
if (&run_cmd($str)) {
|
|
if ( -r "$config{ldapcache_conf}" ) {
|
|
system("cp -p $config{ldapcache_conf} $config{ldapcache_backup_dir} ");
|
|
}
|
|
print "<tr><td><center><b>-- oOo --</b></center></td></tr>\n";
|
|
} else {
|
|
print "<tr><td><b>$text{'index_cmderr'}</b></td></tr>\n";
|
|
}
|
|
print "<tr>\n";
|
|
print "<tr>\n";
|
|
print "<tr>\n";
|
|
print "<tr><td><center>".&text('viewlog_action',$stta_sid)."</td></tr>";
|
|
print "</table></table><p>\n";
|
|
&footer($text{'back_return'},$text{'index'});
|
|
do "footer.pl";
|
|
exit;
|
|
|
|
|
|
|