From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DE97D15808B for ; Thu, 3 Mar 2022 14:25:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 00C4EE07DF; Thu, 3 Mar 2022 14:25:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 82939E07DF for ; Thu, 3 Mar 2022 14:25:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C98BB340831 for ; Thu, 3 Mar 2022 14:25:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AE49F1F1 for ; Thu, 3 Mar 2022 14:25:03 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1646317498.c237e1ff96a6dcc2a40f7dc8303ed456ab50cd0e.bkohler@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: releases/specs/amd64/livegui/files/ X-VCS-Repository: proj/releng X-VCS-Files: releases/specs/amd64/livegui/files/fsscript-stage2.sh X-VCS-Directories: releases/specs/amd64/livegui/files/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: c237e1ff96a6dcc2a40f7dc8303ed456ab50cd0e X-VCS-Branch: master Date: Thu, 3 Mar 2022 14:25:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7370b2c9-f25b-4eae-999e-ac61929f24c8 X-Archives-Hash: 6c052769df7fa9bb07de0ef35f228132 commit: c237e1ff96a6dcc2a40f7dc8303ed456ab50cd0e Author: Ben Kohler gentoo org> AuthorDate: Thu Mar 3 14:24:36 2022 +0000 Commit: Ben Kohler gentoo org> CommitDate: Thu Mar 3 14:24:58 2022 +0000 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=c237e1ff specs/amd64/livegui: fix quoting in polkit rules Signed-off-by: Ben Kohler gentoo.org> releases/specs/amd64/livegui/files/fsscript-stage2.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/releases/specs/amd64/livegui/files/fsscript-stage2.sh b/releases/specs/amd64/livegui/files/fsscript-stage2.sh index 7c11b074..b2cc2990 100755 --- a/releases/specs/amd64/livegui/files/fsscript-stage2.sh +++ b/releases/specs/amd64/livegui/files/fsscript-stage2.sh @@ -50,7 +50,7 @@ popd chown -R gentoo:users /home/gentoo # Let some tools run as root -echo "polkit.addRule(function(action, subject) { +echo 'polkit.addRule(function(action, subject) { if (action.id == "org.gnome.gparted") { return polkit.Result.YES; } @@ -66,4 +66,4 @@ polkit.addRule(function(action, subject) { if (action.id == "org.freedesktop.udisks2.filesystem-mount-system") { return polkit.Result.YES; } -});" > /etc/polkit-1/rules.d/livegui-root-tools.rules +});' > /etc/polkit-1/rules.d/livegui-root-tools.rules