From d0bb4874129ff39baa3a6dba51d6fce8b87792ac Mon Sep 17 00:00:00 2001 From: Michal Hrusecky Date: Thu, 13 Jan 2022 15:11:01 +0100 Subject: [PATCH] mariadb: Add sudo dependency During update we use sudo to start an instance. It probably could be workarounded, but given the MariaDB size, dependency on sudo shouldn't be an issue. Signed-off-by: Michal Hrusecky (cherry picked from commit 0ffec9bd4bf91118d33203d93d53b316b43115ce) --- utils/mariadb/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/utils/mariadb/Makefile b/utils/mariadb/Makefile index 1cfe943d06..b7dafbaa8a 100644 --- a/utils/mariadb/Makefile +++ b/utils/mariadb/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=mariadb PKG_VERSION:=10.4.22 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL := https://archive.mariadb.org/$(PKG_NAME)-$(PKG_VERSION)/source @@ -264,7 +264,8 @@ define Package/mariadb-server-base +libaio \ +liblzma \ +libpcre \ - +resolveip + +resolveip \ + +sudo TITLE:=MariaDB database server base USERID:=mariadb=376:mariadb=376 endef -- 2.30.2