Fixed bug in autossh module

uci now sets enabled=1 in autossh config
pull/36/head
Darren Kitchen 2019-10-02 13:30:16 -07:00 committed by GitHub
parent faa95357db
commit 07f5edfeeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -65,6 +65,7 @@ Local Port: Local port to bind tunnel (Default 22)\n \n" 16 60 4\
read -r autossh_localport
touch /etc/config/autossh
uci set autossh.@autossh[0].ssh="-i /root/.ssh/id_rsa -N -T -R "$autossh_remoteport":localhost:"$autossh_localport" "$autossh_host" -p "$autossh_port""
uci set autossh.@autossh[0].enabled="1"
uci commit autossh
rm $CONF
};;