32 lines
607 B
Bash
Executable File
32 lines
607 B
Bash
Executable File
#!/bin/bash
|
|
. /usr/share/envole/docker/misc/e-ihm.sh
|
|
|
|
RunCmd=CreoleRun
|
|
|
|
clear
|
|
BigTitle "RECONFIGURE ENVOLE"
|
|
container_path_web=$(CreoleGet container_path_web non)
|
|
|
|
Title "Rafraichissement creoled"
|
|
service creoled restart
|
|
|
|
Title "Generation templates"
|
|
FILES="/usr/share/eole/creole/distrib/envole*"
|
|
for f in $FILES
|
|
do
|
|
if [ -f "$f" ]
|
|
then
|
|
EchoVert $(basename $f)
|
|
CreoleCat -t $(basename $f)
|
|
fi
|
|
done
|
|
|
|
Title "Restart apache"
|
|
service apache2 restart
|
|
|
|
if [[ "$1" != "refresh" ]]
|
|
then
|
|
chmod +x $container_path_web/usr/share/envole/docker/envole.sh
|
|
$RunCmd "envole $1 $2" web
|
|
fi
|