24 lines
509 B
PHP
Executable File
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.'/';
|
|
|
|
?>
|