From 396f4768350a2de118a8a8f9543679fccad306a6 Mon Sep 17 00:00:00 2001 From: elam monnot Date: Thu, 24 Mar 2022 10:18:00 +0100 Subject: [PATCH] script dokuwiki --- sio1/sisr1/40-Shell/dokuScript.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 sio1/sisr1/40-Shell/dokuScript.sh diff --git a/sio1/sisr1/40-Shell/dokuScript.sh b/sio1/sisr1/40-Shell/dokuScript.sh new file mode 100755 index 0000000..21f08d5 --- /dev/null +++ b/sio1/sisr1/40-Shell/dokuScript.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +set -e +set -u + +ip=$(ip -br a|grep UP|awk '{print $3}'|cut -f1 -d'/') + +(apt install -y apache2 php php-mbstring php-xml +cd /tmp +wget http://depl.sio.lan/store/dokuwiki-stable.tgz +tar xfz dokuwiki-stable.tgz +mv /tmp/dokuwiki-2020-07-29 /var/www/html/doku +cd /var/www/html/ +chown -R root doku +chmod -R 755 doku +cd doku +chown -R www-data lib data conf) > /dev/null 2>/dev/null +echo "Installation de DokuWiki terminee. +Connectez-vous avec un navigateur a l'adresse http://${ip}/doku/index.php" +exit 0 +