Patch de 1.0.3 porté sur la 1.1
This commit is contained in:
parent
d56643cca2
commit
31936d58bb
|
@ -477,6 +477,7 @@ install/upgrades/0.9.6.sql -text
|
|||
install/upgrades/0.9.7.sql -text
|
||||
install/upgrades/0.9.9.sql -text
|
||||
install/upgrades/1.0.1.php -text
|
||||
install/upgrades/1.0.3.sql -text
|
||||
install/upgrades/1.0.sql -text
|
||||
install/upgrades/1.1.sql -text
|
||||
install/upgrades/README -text
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
KeepAlive Off
|
||||
|
||||
RewriteEngine On
|
||||
RewriteCond %{REQUEST_FILENAME} !/cgi-bin/
|
||||
RewriteRule ^/(.*)$ %%redirect%%/$1 [R=301,L]
|
||||
|
||||
</Virtualhost>
|
||||
|
|
|
@ -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 ;
|
|
@ -76,7 +76,9 @@ if [ ! -z "$RELOAD_ZONES" ]; then
|
|||
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
|
||||
done
|
||||
|
|
Loading…
Reference in New Issue