10 lines
No EOL
288 B
PHP
10 lines
No EOL
288 B
PHP
<?
|
|
require_once 'conf.php';
|
|
require_once "$storageServerPath/var/conf.php";
|
|
header("Conten-type: text/plain");
|
|
$dbname = $config['dsn']['database'];
|
|
$dbuser = $config['dsn']['username'];
|
|
$dbhost = $config['dsn']['hostspec'];
|
|
$res = `pg_dump -s $dbname -U $dbuser`;
|
|
echo "$res\n";
|
|
?>
|