Compare commits

...

11 Commits

Author SHA1 Message Date
tl
9b287db7a5 ajout mariadb-server 2021-01-18 10:34:34 +01:00
tl
ccd153fbb6 adapt s-lb-web2 2021-01-18 10:23:06 +01:00
tl
105b85cc53 adaptation wordpress et mysql 2021-01-18 09:55:14 +01:00
ea24a4bda8 modif backup.sh 2021-01-18 09:36:22 +01:00
db1252d3b6 modif backup.sh 2021-01-18 09:18:52 +01:00
7383918973 modif backup.sh 2021-01-18 09:14:33 +01:00
8f7ad1e13a modif s-mon 2021-01-18 09:12:49 +01:00
3b178d0a52 modif du nom icinga-fk en icinga 2021-01-18 09:10:10 +01:00
be3cb4ecca commit backup.sh 2021-01-18 08:58:54 +01:00
678858e4b1 Merge branch 'master' of https://gitea.lyc-lecastel.fr/gadmin/gsb2021 2021-01-18 08:31:40 +01:00
4ee5264660 ajout des droits icinga.log 2021-01-18 08:30:57 +01:00
33 changed files with 42 additions and 4 deletions

View File

@ -6,9 +6,9 @@
apt: name={{ item }} state=present
with_items:
- apache2
- mysql-server
- mariadb-server
- php-mysql
- php
- libapache2-mod-php
- php-mcrypt
# - php-mcrypt
- python-mysqldb

View File

@ -24,7 +24,7 @@
shell: chmod 400 /etc/postfix/sasl_passwd
- name: postmap
shell: postmap /etc/postfix/sasl_passwd
shell: /usr/sbin/postmap /etc/postfix/sasl_passwd
- name: Copie thawte_Premium_Server_CA.pem
copy: src=thawte_Premium_Server_CA.pem dest=/etc/ssl/certs/
@ -34,3 +34,8 @@
notify:
- restart postfix
- name: Changement des droits icinga.log
file:
path: /var/log/icinga/icinga.log
state: touch
mode: u=rw,g=w

27
roles/s-backup/files/backup.sh Executable file
View File

@ -0,0 +1,27 @@
#!/bin/bash
BDIR=/home/backup
SWIN=/tmp/s-win
[ -d "${BDIR}" ] || mkdir "${BDIR}"
[ -d "${BDIR}" ] || mkdir "${BDIR}/s-win"
[ -d "${SWIN}" ] || mkdir "${SWIN}"
mount -t cifs -o ro,vers=3.0,username=u-backup,password=Azerty1+ //s-win/commun "${SWIN}"
if [ $? != 0 ] ; then
echo "$0 : erreur montage ${SWIN}"
exit 1
fi
rsync -av "${SWIN}/" "${BDIR}/s-win/commun"
umount "${SWIN}"
mount -t cifs -o ro,vers=3.0,username=u-backup,password=Azerty1+ //s-win/public "${SWIN}"
if [ $? != 0 ] ; then
echo "$0 : erreur montage"
exit 2
fi
rsync -av "${SWIN}/" "${BDIR}/s-win/public"
umount "${SWIN}"
exit 0

View File

@ -3,6 +3,9 @@
connection: local
roles:
- apache2
- php-fpm
- mysql
- base
- s-lb-web-ab
- snmp-agent

View File

@ -3,6 +3,9 @@
connection: local
roles:
- apache2
- php-fpm
- mysql
- base
- s-lb-web-ab
- snmp-agent

View File

@ -5,7 +5,7 @@
roles:
- base
- goss
- icinga-fk
- icinga
- postfix
- ssh-cli
- syslog