From 19884b0737b7d1c11aa5fc39059f04c9037b73ee Mon Sep 17 00:00:00 2001 From: Fred Dixon <ffdixon@gmail.com> Date: Sat, 27 Mar 2021 14:12:03 -0500 Subject: [PATCH] Improve logic for detecting OS in bbb-conf --- bigbluebutton-config/bin/bbb-conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigbluebutton-config/bin/bbb-conf b/bigbluebutton-config/bin/bbb-conf index 4010cd3ffa..6f608d8815 100755 --- a/bigbluebutton-config/bin/bbb-conf +++ b/bigbluebutton-config/bin/bbb-conf @@ -96,7 +96,7 @@ source /etc/bigbluebutton/bigbluebutton-release # Figure out our environment (Debian vs. CentOS) # -if [ -f /etc/centos-release ]; then +if [ -f /etc/centos-release ] || [ -f /etc/system-release ]; then DISTRIB_ID=centos TOMCAT_USER=tomcat TOMCAT_DIR=/var/lib/$TOMCAT_USER -- GitLab