script
This commit is contained in:
		
							
								
								
									
										17
									
								
								sio2/sisr/35-script/bash/script/restoration
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										17
									
								
								sio2/sisr/35-script/bash/script/restoration
									
									
									
									
									
										Executable file
									
								
							@@ -0,0 +1,17 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
DAT=$(date "+%u")
 | 
			
		||||
DEST=/home/sv/d/"${DAT}"
 | 
			
		||||
HOST=root@192.168.0.29
 | 
			
		||||
ssh "${HOST}" apt install -y rsync apache2 mariadb-server php 
 | 
			
		||||
ssh "${HOST}" "mysql CREATE DATABASES wordpress;" #a refaire
 | 
			
		||||
ssh "${HOST}" "mysql -u wordpress_user -pqdrhh45 wordpress < "${DEST}"/wordpress.sql" #a refaire
 | 
			
		||||
scp -r "${DEST}"/wordpress "${HOST}":/var/www/html/
 | 
			
		||||
scp "${DEST}"/default-ssl.conf "${HOST}":/etc/apache2/sites-available/
 | 
			
		||||
scp "${DEST}"/wordpress.conf "${HOST}":/etc/apache2/sites-available/
 | 
			
		||||
scp "${DEST}"/server.key "${HOST}":/etc/apache2/
 | 
			
		||||
scp "${DEST}"/server.crt "${HOST}":/etc/apache2/
 | 
			
		||||
#rsync -az "${DEST}"/wordpress "${HOST}":/var/www/html/
 | 
			
		||||
#rsync -az "${DEST}"/default-ssl.conf "${HOST}":/etc/apache2/sites-available/
 | 
			
		||||
#rsync -az "${DEST}"/wordpress.conf "${HOST}":/etc/apache2/sites-available/
 | 
			
		||||
#rsync -az "${DEST}"/server.key "${HOST}":/etc/apache2/
 | 
			
		||||
#rsync -az "${DEST}"/server.crt "${HOST}":/etc/apache2/
 | 
			
		||||
							
								
								
									
										15
									
								
								sio2/sisr/35-script/bash/script/sauv
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										15
									
								
								sio2/sisr/35-script/bash/script/sauv
									
									
									
									
									
										Executable file
									
								
							@@ -0,0 +1,15 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
DAT=$(date "+%u")
 | 
			
		||||
DEST=/home/sv
 | 
			
		||||
DEST2="${DEST}/d/${DAT}"
 | 
			
		||||
[ -d  "${DEST}/d"  ] || mkdir -p "${DEST}/d"
 | 
			
		||||
[ -d  "${DEST}/d/${DAT}"  ] || mkdir -p "${DEST}/d/${DAT}"
 | 
			
		||||
HOST=sauv@192.168.0.34
 | 
			
		||||
ssh "${HOST}" "mysqldump -u wordpress_user -pqdrhh45 wordpress|gzip -" >"${DEST2}"/wordpress.sql.gz
 | 
			
		||||
 | 
			
		||||
rsync -av -e ssh "${HOST}":/var/www/html/wordpress "${DEST2}"
 | 
			
		||||
rsync -av -e ssh "${HOST}":/etc/apache2/sites-available/default-ssl.conf "${DEST2}"/default-ssl.conf
 | 
			
		||||
rsync -av -e ssh "${HOST}":/etc/apache2/sites-available/wordpress.conf "${DEST2}"/wordpress.conf
 | 
			
		||||
rsync -av -e ssh "${HOST}":/etc/apache2/server.key "${DEST2}"/server.key
 | 
			
		||||
rsync -av -e ssh "${HOST}":/etc/apache2/server.crt "${DEST2}"/server.crt
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user