Compare commits

..

No commits in common. "7416dfaa3ec8690d5d687ba9010162e069d92062" and "03e0a1dc7c9aca87f8d85dc39700175411c85dc2" have entirely different histories.

2 changed files with 10 additions and 0 deletions

View File

@ -2,6 +2,7 @@
<creole> <creole>
<files> <files>
<file filelist='ninegate' name='/etc/eole/eole-db.d/ninegate-db.yml' rm='True' mkdir='True'/> <file filelist='ninegate' name='/etc/eole/eole-db.d/ninegate-db.yml' rm='True' mkdir='True'/>
<file filelist='ninegate' name='/usr/share/eole/posttemplate/90-ninegate' source="ninegate-posttemplate.sh" rm='True' mkdir='True' mode="700"/>
</files> </files>
<containers> <containers>

9
tmpl/ninegate-posttemplate.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/bash
if [ "$(CreoleGet activer_apache)" = 'oui' ];then
# gestion des modes apache
ENMOD="ssl rewrite authnz_ldap proxy headers proxy_http proxy_wstunnel"
CreoleRun "a2enmod $ENMOD >/dev/null" web
fi
exit 0