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 7838E1381F3 for ; Wed, 19 Dec 2012 17:44:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B2F4121C070; Wed, 19 Dec 2012 17:44:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3557921C070 for ; Wed, 19 Dec 2012 17:44:02 +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 33FE033D9B1 for ; Wed, 19 Dec 2012 17:44:01 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id C752CE543C for ; Wed, 19 Dec 2012 17:43:59 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1355938952.b44f96ac9bb6427c41480cc6ef2beb1818ca4f93.WilliamH@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: sh/ X-VCS-Repository: proj/openrc X-VCS-Files: sh/init.sh.Linux.in X-VCS-Directories: sh/ X-VCS-Committer: WilliamH X-VCS-Committer-Name: William Hubbs X-VCS-Revision: b44f96ac9bb6427c41480cc6ef2beb1818ca4f93 X-VCS-Branch: master Date: Wed, 19 Dec 2012 17:43:59 +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: a3138980-2062-4833-ab66-14dd6c46208c X-Archives-Hash: fa047bc519ae5912f80d9ecb06470586 commit: b44f96ac9bb6427c41480cc6ef2beb1818ca4f93 Author: William Hubbs gmail com> AuthorDate: Wed Dec 19 17:20:08 2012 +0000 Commit: William Hubbs gentoo org> CommitDate: Wed Dec 19 17:42:32 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=b44f96ac init.sh.Linux: do not try to remove the /run/openrc symlink In order to make migration from /lib*/rc/init.d to /run/openrc possible without rebooting, the migration script creates a symlink from /run/openrc to /lib*/rc/init.d. We were trying to remove it on the next reboot, but this is not possible since / is ro when /run is mounted. Reported-by: fturco fastmail.fm X-Gentoo-Bug: 447678 X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=447678 --- sh/init.sh.Linux.in | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/sh/init.sh.Linux.in b/sh/init.sh.Linux.in index 9b13aad..0eca736 100644 --- a/sh/init.sh.Linux.in +++ b/sh/init.sh.Linux.in @@ -51,10 +51,6 @@ if [ ! -d /run ]; then fi fi -if [ -L /run/openrc ]; then - rm /run/openrc -fi - if [ "$sys" = VSERVER ]; then rm -rf /run/* elif ! mountinfo -q /run; then