From 1447108f9f606946698c793fbda99319f00e7f3a Mon Sep 17 00:00:00 2001 From: uap31 Date: Wed, 20 Oct 2021 07:44:17 +0000 Subject: [PATCH] script doku --- doku/script | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 doku/script diff --git a/doku/script b/doku/script new file mode 100644 index 0000000..29cf91d --- /dev/null +++ b/doku/script @@ -0,0 +1,18 @@ +#!/bin/bash +chemin=/var/www/html/doku +apt install -y apache2 php php-mbstring php-gd php-xml +cd /root +[ -r dokuwiki-stable.gz ] || wget http://depl/store/dokuwiki-stable.tgz +if [ $? !=0 ]; then + echo "$0 : erreurwget" 1>&2 + exit 1 +fi +tar xvfz dokuwiki-stable.tgz +[ -d "${chemin}" ] || mkdir "${chemin}" + +cp -a dokuwiki-2020-07-29/* "${chemin}" +cd "${chemin}" +chown -R root:root . +chmod -R 755 +chown -R www-data:www-data data lib conf . +exit 0