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 AFD241381F3 for ; Thu, 15 Aug 2013 15:22:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 42C46E0DE4; Thu, 15 Aug 2013 15:22:21 +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 CE3D6E0DE4 for ; Thu, 15 Aug 2013 15:22:20 +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 B72FC33EBE2 for ; Thu, 15 Aug 2013 15:22:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 03887E468F for ; Thu, 15 Aug 2013 15:22:17 +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: <1376579682.1f5d447eda0ecc62a556cee19cdc1f1929ac2931.WilliamH@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: man/ X-VCS-Repository: proj/openrc X-VCS-Files: man/runscript.8 X-VCS-Directories: man/ X-VCS-Committer: WilliamH X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 1f5d447eda0ecc62a556cee19cdc1f1929ac2931 X-VCS-Branch: master Date: Thu, 15 Aug 2013 15:22:17 +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: 81400fa6-00af-4517-ae77-739d8755c106 X-Archives-Hash: 579d063b4c8ddff1a2d83f0cd746506b commit: 1f5d447eda0ecc62a556cee19cdc1f1929ac2931 Author: William Hubbs gmail com> AuthorDate: Thu Aug 15 15:14:42 2013 +0000 Commit: William Hubbs gentoo org> CommitDate: Thu Aug 15 15:14:42 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=1f5d447e fix typo on runscript man page The example code had an invalid checkpath option (--dir instead of --directory) and a mode that does not make sense for directories (664 instead of 775). X-Gentoo-Bug: 481034 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=481034 --- man/runscript.8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/runscript.8 b/man/runscript.8 index ddce662..1854638 100644 --- a/man/runscript.8 +++ b/man/runscript.8 @@ -471,7 +471,7 @@ start_pre() # stop_post. fi # Ensure that our dirs are correct - checkpath --dir --owner foo:foo --mode 0664 \\ + checkpath --directory --owner foo:foo --mode 0775 \\ /var/run/foo /var/cache/foo }