Compare commits
11 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
2a7e7cb3d2 | ||
f933da8552 | |||
|
718b2b2209 | ||
|
e71117fdd0 | ||
|
6701d70dd8 | ||
dee04bbe4a | |||
ed5f06188d | |||
cd3fb28888 | |||
e2ea15f1f9 | |||
2aeccb13ec | |||
f61c0db24a |
8
ap22/dau
Executable file
8
ap22/dau
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
set -u
|
||||||
|
|
||||||
|
login=$1
|
||||||
|
password=$(htpasswd -bnBC 10 "$1" "$1")
|
||||||
|
|
||||||
|
echo "${password}:${login}:${login}@localhost:${login},user"
|
9
ap22/dau-ap22
Executable file
9
ap22/dau-ap22
Executable file
@ -0,0 +1,9 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
set -u
|
||||||
|
|
||||||
|
./dau louis >> /var/www/html/doku/conf/users.auth.php
|
||||||
|
./dau johan >> /var/www/html/doku/conf/users.auth.php
|
||||||
|
./dau elio >> /var/www/html/doku/conf/users.auth.php
|
||||||
|
./dau hadrien >> /var/www/html/doku/conf/users.auth.php
|
||||||
|
./dau thomas >> /var/www/html/doku/conf/users.auth.php
|
26
ap22/test
Executable file
26
ap22/test
Executable file
@ -0,0 +1,26 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
#set -e
|
||||||
|
set -u
|
||||||
|
|
||||||
|
#installation des paquets
|
||||||
|
apt install -y wget apache2 php php-gd php-mbstring php-xml
|
||||||
|
|
||||||
|
# script instalation
|
||||||
|
cd /tmp || return
|
||||||
|
wget http://depl.sio.lan/store/dokuwiki-stable.tgz
|
||||||
|
tar xvfz dokuwiki-stable.tgz
|
||||||
|
mkdir /var/www/html/doku
|
||||||
|
if [[ ! -d dokuwiki-2020-07-29 ]] ; then
|
||||||
|
echo "$0 : erreur version dokuwiki"
|
||||||
|
fi
|
||||||
|
cp -a dokuwiki-2020-07-29/* /var/www/html/doku
|
||||||
|
cd /var/www/html/doku || return
|
||||||
|
chown -R root:root .
|
||||||
|
chmod -R 755 .
|
||||||
|
chown -R www-data:www-data data lib conf
|
||||||
|
|
||||||
|
adresse=$(ip -br a|grep UP|awk '{print $3}'|cut -f1 -d'/')
|
||||||
|
echo "instalation de dokuwiki terminee. Connectez-vous avec un navigateur à l'adresse http://${adresse}/doku"
|
||||||
|
|
||||||
|
exit 0
|
@ -5,6 +5,7 @@ file:
|
|||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
filetype: file
|
filetype: file
|
||||||
|
contains: []
|
||||||
command:
|
command:
|
||||||
crontab -l:
|
crontab -l:
|
||||||
exit-status: 0
|
exit-status: 0
|
||||||
@ -18,3 +19,10 @@ command:
|
|||||||
- ap22
|
- ap22
|
||||||
stderr: []
|
stderr: []
|
||||||
timeout: 10000
|
timeout: 10000
|
||||||
|
interface:
|
||||||
|
enp0s3:
|
||||||
|
exists: true
|
||||||
|
addrs:
|
||||||
|
- 192.168.0.27/24
|
||||||
|
- fe80::a00:27ff:feef:c5c3/64
|
||||||
|
mtu: 1500
|
Loading…
x
Reference in New Issue
Block a user