[script]use autossh for setBridge

This commit is contained in:
Mathieu Maret 2014-10-29 17:40:28 +01:00
parent c5f309484d
commit e0fa7c97ce
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
#!/bin/bash
user=pi
host=tutabaga.hd.free.fr
ps aux | grep ssh | grep $host > /dev/null
ps aux | grep autossh | grep $host > /dev/null
res=$?
if [ $res == 1 ]; then
ssh -N -R 65022:localhost:22 $user@$host&
autossh -M 2222 -f -N -R 65022:localhost:22 $user@$host
fi