ajout dokuauto

This commit is contained in:
Esteban Cavielles 2021-03-23 11:27:37 +01:00
commit 3a29e1e5d9

19
dokuauto Executable file
View File

@ -0,0 +1,19 @@
#!/bin/bash
dkroot=/var/www/html/doku
apt install -y apache2 php php-gd php-mbstring php-mysql php-xml
cd /tmp
[ -r dokuwiki-stable.tgz ] || wget http://depl/store/dokuwiki-stable.tgz
if [ $? != 0 ]; then
echo "$0 : erreur wget" 1>&2
exit 1
fi
tar xfz dokuwiki-stable.tgz
[ -d "${dkroot}" ] || mkdir "${dkroot}"
cp -a dokuwiki-2020-07-29/* "${dkroot}"
cd "${dkroot}"
chown -R root:root .
chmod -R 755 .
chown -R www-data:www-data data lib conf
exit 0