From 00c717686b9aeb2e9f9688e2bc32b551bde3f00d Mon Sep 17 00:00:00 2001 From: Louis Depres Date: Thu, 10 Mar 2022 10:24:27 +0100 Subject: [PATCH 1/7] Serveur Sv --- sv/cron.txt | 1 + sv/restorebase | 2 ++ sv/svbase | 5 +++++ 3 files changed, 8 insertions(+) create mode 100644 sv/cron.txt create mode 100755 sv/restorebase create mode 100755 sv/svbase diff --git a/sv/cron.txt b/sv/cron.txt new file mode 100644 index 0000000..a24ab04 --- /dev/null +++ b/sv/cron.txt @@ -0,0 +1 @@ +0 21 * * 1-7 /root/svbase diff --git a/sv/restorebase b/sv/restorebase new file mode 100755 index 0000000..88fba5a --- /dev/null +++ b/sv/restorebase @@ -0,0 +1,2 @@ +#!/bin/bash +zcat latest.sql.gz|ssh root@ap22 "mysql -u gsbadm -pgsbadm gsbvisite" diff --git a/sv/svbase b/sv/svbase new file mode 100755 index 0000000..191a54a --- /dev/null +++ b/sv/svbase @@ -0,0 +1,5 @@ +#!/bin/bash +DAT=$(date "+%u") + +ssh root@ap22 "mysqldump -u gsbadm -pgsbadm gsbvisite | gzip" > gsbvisite-$DAT.sql.gz +cp gsbvisite-$DAT.sql.gz latest.sql.gz From 3412ef82aec8e96e303190006d394b42c5bbafa8 Mon Sep 17 00:00:00 2001 From: Louis Depres Date: Thu, 17 Mar 2022 09:32:52 +0100 Subject: [PATCH 2/7] Fichier Goss --- sv/goss.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 sv/goss.yaml diff --git a/sv/goss.yaml b/sv/goss.yaml new file mode 100644 index 0000000..dbea99d --- /dev/null +++ b/sv/goss.yaml @@ -0,0 +1,20 @@ +file: + /root/latest.sql.gz: + exists: true + mode: "0644" + owner: root + group: root + filetype: file +command: + crontab -l: + exit-status: 0 + stdout: + - 0 21 * * 1-7 /root/svbase + stderr: [] + timeout: 10000 + ssh ap22 hostname: + exit-status: 0 + stdout: + - ap22 + stderr: [] + timeout: 10000 From f61c0db24a8dd3ce21963e2249944f2ba831bb4b Mon Sep 17 00:00:00 2001 From: uap22-r Date: Thu, 17 Mar 2022 10:23:26 +0100 Subject: [PATCH 3/7] Supprimer 'sv/goss.yaml' --- sv/goss.yaml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 sv/goss.yaml diff --git a/sv/goss.yaml b/sv/goss.yaml deleted file mode 100644 index dbea99d..0000000 --- a/sv/goss.yaml +++ /dev/null @@ -1,20 +0,0 @@ -file: - /root/latest.sql.gz: - exists: true - mode: "0644" - owner: root - group: root - filetype: file -command: - crontab -l: - exit-status: 0 - stdout: - - 0 21 * * 1-7 /root/svbase - stderr: [] - timeout: 10000 - ssh ap22 hostname: - exit-status: 0 - stdout: - - ap22 - stderr: [] - timeout: 10000 From 2aeccb13ecc887d139b25b00a2d7855ddcbd6805 Mon Sep 17 00:00:00 2001 From: Louis Depres Date: Thu, 17 Mar 2022 10:23:50 +0100 Subject: [PATCH 4/7] Fichier Goss --- sv/goss.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/sv/goss.yaml b/sv/goss.yaml index dbea99d..5a2936d 100644 --- a/sv/goss.yaml +++ b/sv/goss.yaml @@ -5,6 +5,7 @@ file: owner: root group: root filetype: file + contains: [] command: crontab -l: exit-status: 0 @@ -18,3 +19,10 @@ command: - ap22 stderr: [] timeout: 10000 +interface: + enp0s3: + exists: true + addrs: + - 192.168.0.27/24 + - fe80::a00:27ff:feef:c5c3/64 + mtu: 1500 From cd3fb288887819a94e5246baaef8fc1799ddc501 Mon Sep 17 00:00:00 2001 From: Louis Depres Date: Thu, 24 Mar 2022 10:18:47 +0100 Subject: [PATCH 5/7] Bash Doku --- ap22/test | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 ap22/test diff --git a/ap22/test b/ap22/test new file mode 100755 index 0000000..f6c9737 --- /dev/null +++ b/ap22/test @@ -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 From ed5f06188d37b1ad1f4479c78049981fdc4c5869 Mon Sep 17 00:00:00 2001 From: Louis Depres Date: Thu, 24 Mar 2022 10:52:40 +0100 Subject: [PATCH 6/7] Bash utilisateur --- ap22/dau | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 ap22/dau diff --git a/ap22/dau b/ap22/dau new file mode 100755 index 0000000..287c159 --- /dev/null +++ b/ap22/dau @@ -0,0 +1,11 @@ +#!/bin/bash + +set -e +set -u + +login=$1 +password=$(htpasswd -bnBC 10 "" $1|tr -d '\d') + +echo "${login}${password}:${login}:${login}@localhost:${login},user" + +./dau $1 >> /var/www/html/doku/conf/users.auth.php From dee04bbe4a8e9e4a4f11293e867a02e96c4e6b22 Mon Sep 17 00:00:00 2001 From: uap22-r Date: Thu, 24 Mar 2022 11:13:15 +0100 Subject: [PATCH 7/7] =?UTF-8?q?Mise=20=C3=A0=20jour=20de=20'ap22/dau'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ap22/dau | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ap22/dau b/ap22/dau index 287c159..eb80d82 100755 --- a/ap22/dau +++ b/ap22/dau @@ -8,4 +8,4 @@ password=$(htpasswd -bnBC 10 "" $1|tr -d '\d') echo "${login}${password}:${login}:${login}@localhost:${login},user" -./dau $1 >> /var/www/html/doku/conf/users.auth.php +#./dau $1 >> /var/www/html/doku/conf/users.auth.php