mirror of
https://github.com/YunoHost-Apps/borgserver_ynh.git
synced 2024-09-03 20:36:20 +02:00
[fix] Crash if we are not able to retrieve ssh_user
This commit is contained in:
parent
2898fbe9ab
commit
96383b7787
1 changed files with 1 additions and 0 deletions
|
@ -57,6 +57,7 @@ fi
|
|||
# Fix broken value ssh_user that mistakenly got replaced by the public key in previous versions...
|
||||
if echo "$ssh_user" | grep -q ' '; then
|
||||
ssh_user=$(grep "$ssh_user" /home/*/.ssh/authorized_keys | grep borg | cut -d/ -f3)
|
||||
[ -n "$ssh_user" ] || ynh_die "Unable to retrieve ssh_user please fix /etc/yunohost/apps/$app/settings.yml manually :( !"
|
||||
ynh_app_setting_set --app=$app --key=ssh_user --value="$ssh_user"
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue