From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 588C713800E for ; Fri, 3 Aug 2012 11:08:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 35F71E06B1; Fri, 3 Aug 2012 11:08:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 0827FE06B1 for ; Fri, 3 Aug 2012 11:08:45 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 658781B4036 for ; Fri, 3 Aug 2012 11:08:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 2B98CE5441 for ; Fri, 3 Aug 2012 11:08:42 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1341839914.7ab2ce941fc7b05a92a1fbe081459159d1584c31.blueness@gentoo> Subject: [gentoo-commits] proj/hardened-dev:master commit in: sys-apps/apparmor/files/ X-VCS-Repository: proj/hardened-dev X-VCS-Files: sys-apps/apparmor/files/apparmor-init X-VCS-Directories: sys-apps/apparmor/files/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 7ab2ce941fc7b05a92a1fbe081459159d1584c31 X-VCS-Branch: master Date: Fri, 3 Aug 2012 11:08:42 +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-Archives-Salt: 241f840c-0a24-48f6-84bb-c532c91c69e5 X-Archives-Hash: b72a3a55eff4f7c06af3fa3d5416581a commit: 7ab2ce941fc7b05a92a1fbe081459159d1584c31 Author: Michael Palimaka gentoo org> AuthorDate: Mon Jul 9 13:18:34 2012 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Mon Jul 9 13:18:34 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/hardened-dev.git;a=commit;h=7ab2ce94 sys-apps/apparmor: silence useless error messages in init script (Portage version: 2.1.11.5/git/Linux x86_64, signed Manifest commit with key 675D0D2C) --- sys-apps/apparmor/files/apparmor-init | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/sys-apps/apparmor/files/apparmor-init b/sys-apps/apparmor/files/apparmor-init index 0d408ea..6350468 100755 --- a/sys-apps/apparmor/files/apparmor-init +++ b/sys-apps/apparmor/files/apparmor-init @@ -152,7 +152,7 @@ remove_profiles() { PROFILES=$(get_active_profiles) for PROFILE in $PROFILES; do #use printf instead of echo -n for POSIX compatibility - printf '%s' "$PROFILE" > "${SECURITYFS}/.remove" + printf '%s' "$PROFILE" > "${SECURITYFS}/.remove" 2>&1 done return 0 }