Files
agtuser 16a3fd1e1b init
2024-11-11 17:56:00 +08:00

24 lines
509 B
PHP
Executable File

<?php
$archivePath='/usr/local/apache/htdocs/db_backup/archive/';
$paramDir = "params";
$paremerPath = $archivePath . $paramDir . '/';
$subsDir = "subs";
$subsPath = $archivePath . $subsDir . '/';
$bssDir = "bssDir";
$bssPath = $archivePath . $bssDir . '/';
$bssOmcTlbDir = "omcTlb";
$bssOmcTlbPath = $bssPath . $bssOmcTlbDir . '/';
$bssDbDir = "dbs";
$bssDbPath = $bssPath . $bssDbDir . '/';
$tgzName = "allBackup.tgz";
$tgzDir = "tgzFile";
$tgzPath=$archivePath.$tgzDir.'/';
?>