From 060be263d2442e674e78393bc90d3b071828d478 Mon Sep 17 00:00:00 2001 From: Sebastian Kemper Date: Sun, 10 Oct 2021 11:26:39 +0200 Subject: [PATCH] freeswitch: don't start with explicit group Currently the freeswitch init script starts the service with the group "freeswitch". Like this, even if the freeswitch user is part of other groups, freeswitch will not be able to make use of them. So for instance if you add the user to the group "dialout", freeswitch will run under group "freeswitch", instead of "freeswitch" _and_ "dialout". Not specifying the group gets rid of this limitation. Signed-off-by: Sebastian Kemper --- net/freeswitch/Makefile | 2 +- net/freeswitch/files/freeswitch.init | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/net/freeswitch/Makefile b/net/freeswitch/Makefile index 75a4067..d07cbd9 100644 --- a/net/freeswitch/Makefile +++ b/net/freeswitch/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=freeswitch PKG_VERSION:=1.10.6 -PKG_RELEASE:=4 +PKG_RELEASE:=5 PKG_MAINTAINER:=Sebastian Kemper PKG_SOURCE:=freeswitch-$(PKG_VERSION).-release.tar.xz diff --git a/net/freeswitch/files/freeswitch.init b/net/freeswitch/files/freeswitch.init index b704eb3..c390b9f 100644 --- a/net/freeswitch/files/freeswitch.init +++ b/net/freeswitch/files/freeswitch.init @@ -83,7 +83,6 @@ start_service() { -cache "$dir_cache" \ -conf "$dir_etc" \ -db "$dir_db" \ - -g "$NAME" \ -log "$dir_log" \ -recordings "$dir_recordings" \ -run "$dir_run" \ -- 2.30.2