ajout dokuauto
This commit is contained in:
commit
3a29e1e5d9
19
dokuauto
Executable file
19
dokuauto
Executable 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
|
||||
|
Loading…
x
Reference in New Issue
Block a user