From: <abe...@us...> - 2015-07-10 16:49:05
|
Revision: 7145 http://sourceforge.net/p/astlinux/code/7145 Author: abelbeck Date: 2015-07-10 16:49:02 +0000 (Fri, 10 Jul 2015) Log Message: ----------- web interface, exclude /stat/var/www/cache/ files from unionfs backup Modified Paths: -------------- branches/1.0/package/webinterface/altweb/admin/system.php branches/1.0/package/webinterface/altweb/common/version.php Modified: branches/1.0/package/webinterface/altweb/admin/system.php =================================================================== --- branches/1.0/package/webinterface/altweb/admin/system.php 2015-07-09 14:28:18 UTC (rev 7144) +++ branches/1.0/package/webinterface/altweb/admin/system.php 2015-07-10 16:49:02 UTC (rev 7145) @@ -223,6 +223,7 @@ $excludecmd = 'find /oldroot/mnt/asturw/ -type f | sed -e "s:^/oldroot/mnt/asturw/::" | sed -n'; $excludecmd .= ' -e "s:^stat/var/lib/asterisk/sounds/.*$:&:p"'; $excludecmd .= ' -e "s:^stat/var/lib/asterisk/moh/.*$:&:p"'; + $excludecmd .= ' -e "s:^stat/var/www/cache/.*$:&:p"'; $excludecmd .= ' -e "s:^stat/var/packages/.*$:&:p"'; $excludecmd .= ' -e "s:^usr/lib/locale/.*$:&:p"'; shell($excludecmd.' >'.$excludefile.' 2>/dev/null', $status); Modified: branches/1.0/package/webinterface/altweb/common/version.php =================================================================== --- branches/1.0/package/webinterface/altweb/common/version.php 2015-07-09 14:28:18 UTC (rev 7144) +++ branches/1.0/package/webinterface/altweb/common/version.php 2015-07-10 16:49:02 UTC (rev 7145) @@ -1,6 +1,6 @@ <?php // version.php for AstLinux Alternate Web Interface -$GUI_VERSION = '1.8.33'; +$GUI_VERSION = '1.8.34'; ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |