You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
206 B
12 lines
206 B
12 years ago
|
#!/bin/bash
|
||
|
while true
|
||
|
do
|
||
|
ping -c1 192.168.0.206 &> /dev/null
|
||
|
if [ $? == 0 ]
|
||
|
then
|
||
|
echo "[+] Server Becomes Alive ......"
|
||
|
rsync -avz --delete /var/www/ root@192.168.0.206:/var/www/
|
||
|
exit 0;
|
||
|
fi
|
||
|
done
|