Patch de 1.0.3 porté sur la 1.1

This commit is contained in:
Alan Garcia 2012-08-26 11:02:46 +00:00
parent d56643cca2
commit 31936d58bb
4 changed files with 7 additions and 1 deletions

1
.gitattributes vendored
View File

@ -477,6 +477,7 @@ install/upgrades/0.9.6.sql -text
install/upgrades/0.9.7.sql -text install/upgrades/0.9.7.sql -text
install/upgrades/0.9.9.sql -text install/upgrades/0.9.9.sql -text
install/upgrades/1.0.1.php -text install/upgrades/1.0.1.php -text
install/upgrades/1.0.3.sql -text
install/upgrades/1.0.sql -text install/upgrades/1.0.sql -text
install/upgrades/1.1.sql -text install/upgrades/1.1.sql -text
install/upgrades/README -text install/upgrades/README -text

View File

@ -6,6 +6,7 @@
KeepAlive Off KeepAlive Off
RewriteEngine On RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !/cgi-bin/
RewriteRule ^/(.*)$ %%redirect%%/$1 [R=301,L] RewriteRule ^/(.*)$ %%redirect%%/$1 [R=301,L]
</Virtualhost> </Virtualhost>

View File

@ -0,0 +1,2 @@
-- some sub_domaines entries are not tagged with the right account's UID :
UPDATE sub_domaines,domaines SET sub_domaines.compte = domaines.compte WHERE sub_domaines.domaine = domaines.domaine ;

View File

@ -76,7 +76,9 @@ if [ ! -z "$RELOAD_ZONES" ]; then
apache_reload apache_reload
;; ;;
*) *)
$sudo rndc reload "$zone" || echo "Cannot reload bind for zone $zone" # FIXME: should reload only concerned zones
#$sudo rndc reload "$zone" || echo "Cannot reload bind for zone $zone"
$sudo rndc reload || echo "Cannot reload bind for zone $zone"
;; ;;
esac esac
done done