From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Qv7nj-0005kL-Sj for garchives@archives.gentoo.org; Sun, 21 Aug 2011 13:10:59 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6DFDA21C36C; Sun, 21 Aug 2011 13:10:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 3CA4F21C36C for ; Sun, 21 Aug 2011 13:10:48 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6B0711B4028 for ; Sun, 21 Aug 2011 13:10:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 78A9080040 for ; Sun, 21 Aug 2011 13:10:46 +0000 (UTC) From: "Александр Берсенев" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Александр Берсенев" Message-ID: <3acaba4993c5fdd736b1821acd13f7b0f5a2b269.bay@gentoo> Subject: [gentoo-commits] proj/autodep:master commit in: src/autodep/logfs/ X-VCS-Repository: proj/autodep X-VCS-Files: src/autodep/logfs/logger_fusefs.py src/autodep/logfs/logger_hooklib.py X-VCS-Directories: src/autodep/logfs/ X-VCS-Committer: bay X-VCS-Committer-Name: Александр Берсенев X-VCS-Revision: 3acaba4993c5fdd736b1821acd13f7b0f5a2b269 Date: Sun, 21 Aug 2011 13:10:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 7ae553d1a231d7ecffd31273e765f9da commit: 3acaba4993c5fdd736b1821acd13f7b0f5a2b269 Author: Alexander Bersenev hackerdom ru> AuthorDate: Sun Aug 21 19:09:20 2011 +0000 Commit: =D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=80 =D0=91= =D0=B5=D1=80=D1=81=D0=B5=D0=BD=D0=B5=D0=B2 hackerdom ru> CommitDate: Sun Aug 21 19:09:20 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/autodep.git;a= =3Dcommit;h=3D3acaba49 corrected paths to logging libraries --- src/autodep/logfs/logger_fusefs.py | 4 +--- src/autodep/logfs/logger_hooklib.py | 4 +++- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/autodep/logfs/logger_fusefs.py b/src/autodep/logfs/logge= r_fusefs.py index 10e23dc..8c16d91 100644 --- a/src/autodep/logfs/logger_fusefs.py +++ b/src/autodep/logfs/logger_fusefs.py @@ -47,9 +47,7 @@ class logger: os.environ["LOG_SOCKET"]=3Dself.socketname os.environ["PARENT_PID"]=3Dstr(self.currpid) =20 - # TODO: change - ret=3Dsubprocess.call(['/home/bay/gsoc/src/hook_fusefs/hookfs',self.roo= tmountpath, - '-o','allow_other,suid']) + ret=3Dsubprocess.call(['hookfs',self.rootmountpath, '-o','allow_other,s= uid']) if ret!=3D0: print "failed to launch FUSE logger. Check messages above" exit(1) diff --git a/src/autodep/logfs/logger_hooklib.py b/src/autodep/logfs/logg= er_hooklib.py index 1c72279..c6af4e4 100644 --- a/src/autodep/logfs/logger_hooklib.py +++ b/src/autodep/logfs/logger_hooklib.py @@ -5,7 +5,9 @@ import sys =20 class logger: socketname=3D'' - hooklibpath=3D'/home/bay/gsoc/src/hook_lib/file_hook.so' # TODO: chang= e + # we can't use just file_hook.so here=20 + # because program may change LD_LIBRARY_PATH + hooklibpath=3D'/usr/lib/file_hook.so' =20 def __init__(self,socketname): self.socketname=3Dsocketname