cups/add-wheel-to-system-groups.patch
yinzehao fe6f1638f2 bugfix: add group wheel to SystemGroup
修复管理员用户没有ladmin和lp 组,添加打印任务失败问题,在/etc/cups/cups-files.conf  中的  SystemGroup 项, 添加额外的wheel 组
2021-07-30 15:54:32 +08:00

38 lines
1.4 KiB
Diff

From 89fabc72df74a5af2bec57f0577aea474ca0ec78 Mon Sep 17 00:00:00 2001
From: Nicolas Fella <nicolas.fella@gmx.de>
Date: Fri, 23 Aug 2019 14:43:19 +0200
Subject: [PATCH] Add wheel to system groups
---
config-scripts/cups-defaults.m4 | 2 +-
configure | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/config-scripts/cups-defaults.m4 b/config-scripts/cups-defaults.m4
index b3d96ef0a..517539e1f 100644
--- a/config-scripts/cups-defaults.m4
+++ b/config-scripts/cups-defaults.m4
@@ -245,7 +245,7 @@ AC_ARG_WITH(system_groups, [ --with-system-groups set default system groups
AC_MSG_CHECKING(for default system groups)
if test -f /etc/group; then
CUPS_SYSTEM_GROUPS=""
- GROUP_LIST="lpadmin sys system root"
+ GROUP_LIST="lpadmin sys system root wheel"
for group in $GROUP_LIST; do
if test "`grep \^${group}: /etc/group`" != ""; then
if test "x$CUPS_SYSTEM_GROUPS" = x; then
diff --git a/configure b/configure
index 18be3db75..d3df145bc 100755
--- a/configure
+++ b/configure
@@ -9601,7 +9601,7 @@ else
$as_echo_n "checking for default system groups... " >&6; }
if test -f /etc/group; then
CUPS_SYSTEM_GROUPS=""
- GROUP_LIST="lpadmin sys system root"
+ GROUP_LIST="lpadmin sys system root wheel"
for group in $GROUP_LIST; do
if test "`grep \^${group}: /etc/group`" != ""; then
if test "x$CUPS_SYSTEM_GROUPS" = x; then