This commit is contained in:
root 2021-10-19 07:36:20 +00:00
parent 87b4bf606d
commit b4569ec7c4

20
doku/inst Executable file
View File

@ -0,0 +1,20 @@
#!/bin/bash
DEST=/var/www/html/doku
#creation chemin doku
apt install -y apache2 php php-mbstring php-gd php-xml
cd /root
[ -r dokuwiki-stable.tgz ] || wget http://depl/store/dokuwiki-stable.tgz
#on regarde si le dokuwiki est present, sinon on l'install
if [ $? != 0 ]; then
echo "$0 : erreurwget" 1>&2
exit 1
fi
tar xvfz dokuwiki-stable.tgz
[ -d "${DEST}" ] || mkdir "${DEST}"
#on regarde si le chemin DEST est creer, sinon on le fait
cp -a dokuwiki-2020-07-29/* "${DEST}"
cd "${DEST}"
chown -R root:root .
chmod -R 755 .
chown -R www-data:www-data data lib conf .
exit 0