From fd36623cea01f92869b8b3985d7a0fe197062be7 Mon Sep 17 00:00:00 2001 From: Mathis Date: Thu, 24 Mar 2022 10:42:25 +0100 Subject: [PATCH] ajout fichier --- ap23/script/ScriptDokuwiki.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 ap23/script/ScriptDokuwiki.sh diff --git a/ap23/script/ScriptDokuwiki.sh b/ap23/script/ScriptDokuwiki.sh new file mode 100755 index 0000000..8c14189 --- /dev/null +++ b/ap23/script/ScriptDokuwiki.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +#set -e +set -u +#instalation des paquets +apt install -y wget apache2 php php-gd php-mbstring php-xml + +#srcipt installation +cd /tmp || return +wget http://depl.sio.lan/store/dokuwiki-stable.tgz +tar xvfs dokuwiki-stable.tgz +mkdir /var/www/html/doku +if [[! -d dokuwiki-2020-07-29]] ; then + echo"$0 : erreur version dokuwiki" +fi +cp -a dokuwiki-2020-07-29/* /var/www/html/doku +cd /var/www/html/doku || return +chown -R root:root . +chown -R www-data:www-data data lib conf + +adresse=$(ip -br a|grep UP|awk '{print $3}t'|cut -f1 -d'/') +echo "installation du dokuwiki terminee.Conecter vous a l'adresse http://${adresse}/doku" + +exit 0