From b06de03d46a5e4158020e852c87b6ec84ec6fe8e Mon Sep 17 00:00:00 2001 From: Maniack Crudelis Date: Sun, 26 Apr 2020 13:30:49 +0200 Subject: [PATCH] Patch murmurd exit for buster version --- scripts/install | 6 ++++-- scripts/upgrade | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/scripts/install b/scripts/install index 187085b..b202953 100644 --- a/scripts/install +++ b/scripts/install @@ -121,7 +121,9 @@ usermod --append --groups ssl-cert mumble-server # Set SuperUser password #================================================= -murmurd -ini "$mumble_conf" -supw "$su_passwd" "$instance_id" +# || true temporarily to ignore a bug in murmurd 1.3.0 +# https://github.com/mumble-voip/mumble/issues/3911 +murmurd -ini "$mumble_conf" -supw "$su_passwd" "$instance_id" || true #================================================= # Disable default server installed by Debian's package @@ -158,4 +160,4 @@ If you changed it manually and upgrade mumble, you'll find a backup in $final_pa Are you facing an issue, want to improve this app or say thank you? Please open a new issue in this project: https://github.com/YunoHost-Apps/mumbleserver_ynh " -ynh_send_readme_to_admin "$message" \ No newline at end of file +ynh_send_readme_to_admin "$message" diff --git a/scripts/upgrade b/scripts/upgrade index 97c1088..a257cd2 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -169,7 +169,9 @@ usermod --append --groups ssl-cert mumble-server # Set SuperUser password #================================================= -murmurd -ini "$mumble_conf" -supw "$su_passwd" "$instance_id" +# || true temporarily to ignore a bug in murmurd 1.3.0 +# https://github.com/mumble-voip/mumble/issues/3911 +murmurd -ini "$mumble_conf" -supw "$su_passwd" "$instance_id" || true #================================================= # Disable default server installed by Debian's package @@ -208,4 +210,4 @@ If you changed it manually and upgrade mumble, you'll find a backup in $final_pa Are you facing an issue, want to improve this app or say thank you? Please open a new issue in this project: https://github.com/YunoHost-Apps/mumbleserver_ynh " -ynh_send_readme_to_admin "$message" \ No newline at end of file +ynh_send_readme_to_admin "$message"