Changeset 3467
- Timestamp:
- 01/02/07 06:18:07 (6 years ago)
- Files:
-
- modules/branches/2.3 (modified) (1 prop)
- modules/branches/2.3/backup/bin/dumpastdb.php (modified) (2 diffs)
- modules/branches/2.3/backup/bin/restoreastdb.php (modified) (2 diffs)
- modules/branches/2.3/backup/module.xml (modified) (2 diffs)
- modules/branches/2.3/backup/page.backup.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.3
- Property svnmerge-integrated changed from /modules/branches/2.2:1-3329,3355-3356,3359-3360,3385-3386,3440 to /modules/branches/2.2:1-3329,3355-3356,3359-3360,3385-3386,3440,3465
modules/branches/2.3/backup/bin/dumpastdb.php
r2961 r3467 4 4 5 5 global $argv; 6 require_once("php-asmanager.php");7 6 8 7 function getconf($filename) { … … 16 15 } 17 16 18 $amp_conf = getconf( AMP_CONF);17 $amp_conf = getconf("/etc/amportal.conf"); 19 18 19 require_once($amp_conf['AMPWEBROOT']."/admin/common/php-asmanager.php"); 20 20 $astman = new AGI_AsteriskManager(); 21 21 if (! $res = $astman->connect("127.0.0.1", $amp_conf["AMPMGRUSER"] , $amp_conf["AMPMGRPASS"])) { modules/branches/2.3/backup/bin/restoreastdb.php
r3396 r3467 4 4 5 5 global $argv; 6 require_once("php-asmanager.php");7 6 8 7 function getconf($filename) { … … 16 15 } 17 16 18 $amp_conf = getconf(AMP_CONF); 17 $amp_conf = getconf("/etc/amportal.conf"); 18 19 require_once($amp_conf['AMPWEBROOT']."/admin/common/php-asmanager.php"); 19 20 20 21 $astman = new AGI_AsteriskManager(); modules/branches/2.3/backup/module.xml
r3397 r3467 2 2 <rawname>backup</rawname> 3 3 <name>Backup & Restore</name> 4 <version>2. 0.3</version>4 <version>2.1</version> 5 5 <type>tool</type> 6 6 <category>System Administration</category> … … 12 12 </depends> 13 13 <changelog> 14 *2.1* Actually, really, restore ASTDB now. Finally. Also add redirect_standard to avoid problems with TRBoE. 15 *2.0.4* Add he_IL translation 14 16 *2.0.3* don't have BLKVM and FM astdb trees, which shouldn't be left around anyhow 15 17 *2.0.2* fixed restore ALL to get it to actually work modules/branches/2.3/backup/page.backup.php
r2973 r3467 98 98 core_devices2astdb(); 99 99 needreload(); 100 redirect_standard(); 100 101 break; 101 102 }
