diff options
author | Leo Soares <leo@hyper.ag> | 2021-10-06 14:03:42 +0100 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2021-10-06 12:30:45 -0700 |
commit | 9c4d79519ced3d0ccf6917e24b32b747e1672c62 (patch) | |
tree | d443174167f16722f7af27a778a70a853d83c06c /net/autossh | |
parent | 38143e6f8b9d1ff0a3e33a15d655306cc9f74c27 (diff) |
autossh: fix procd env issue
This commit fixes an issue where the `AUTOSSH_GATETIME` is not available in the `procd` environment which gets overwritten by the second `procd_set_param env` call.
It now calls the `procd_set_param env` once with the two variables, instead of twice.
Signed-off-by: Leo Soares <leo@hyper.ag>
Diffstat (limited to 'net/autossh')
-rw-r--r-- | net/autossh/files/autossh.init | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/autossh/files/autossh.init b/net/autossh/files/autossh.init index f73e41573..9f6225bb0 100644 --- a/net/autossh/files/autossh.init +++ b/net/autossh/files/autossh.init @@ -18,8 +18,7 @@ start_instance() { procd_open_instance procd_set_param command /usr/sbin/autossh -M ${monitorport:-20000} ${ssh} procd_set_param respawn ${respawn_threshold:-3600} ${respawn_timeout:-5} ${respawn_retry:-5} - procd_set_param env AUTOSSH_GATETIME="${gatetime:-30}" - procd_set_param env AUTOSSH_POLL="${poll:-600}" + procd_set_param env AUTOSSH_GATETIME="${gatetime:-30}" AUTOSSH_POLL="${poll:-600}" procd_close_instance } |