diff --git a/ap22/dau b/ap22/dau new file mode 100755 index 0000000..eb80d82 --- /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 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 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/goss1.yaml b/sv/goss1.yaml new file mode 100644 index 0000000..5a2936d --- /dev/null +++ b/sv/goss1.yaml @@ -0,0 +1,28 @@ +file: + /root/latest.sql.gz: + exists: true + mode: "0644" + owner: root + group: root + filetype: file + contains: [] +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 +interface: + enp0s3: + exists: true + addrs: + - 192.168.0.27/24 + - fe80::a00:27ff:feef:c5c3/64 + mtu: 1500 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