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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 93194139694 for ; Wed, 8 Mar 2017 23:16:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 99E5FE0CB8; Wed, 8 Mar 2017 23:16:33 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 766A2E0CA2 for ; Wed, 8 Mar 2017 23:16:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B22D53416A6 for ; Wed, 8 Mar 2017 23:16:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7889C618E for ; Wed, 8 Mar 2017 23:16:31 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1489014890.faa1349963f41c39c4fbf5da5445c526fab3430f.dolsen@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/base/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/base/stagebase.py X-VCS-Directories: catalyst/base/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: faa1349963f41c39c4fbf5da5445c526fab3430f X-VCS-Branch: master Date: Wed, 8 Mar 2017 23:16:31 +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: 038d1732-f15b-486b-ae4b-2cffc770ab6a X-Archives-Hash: 32a8615eb26ec2e1a378e4f22158dfd9 commit: faa1349963f41c39c4fbf5da5445c526fab3430f Author: Brian Dolbec gentoo org> AuthorDate: Wed Mar 8 23:13:59 2017 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Wed Mar 8 23:14:50 2017 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=faa13499 base/stagebase.py: Add additional log messages for autoresume point invalidation catalyst/base/stagebase.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index 0d36e33..a6233b2 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -729,24 +729,28 @@ class StageBase(TargetBase, ClearBase, GenBase): # Autoresume is valid, SEEDCACHE is valid _unpack = False invalid_snapshot = False + log.notice('Resume point "unpack" valid...') elif os.path.isfile(self.settings["source_path"]) \ and self.settings["source_path_hash"] == clst_unpack_hash: # Autoresume is valid, tarball is valid _unpack = False invalid_snapshot = False + log.notice('Resume point "source_path_hash" valid...') elif os.path.isdir(self.settings["source_path"]) \ and self.resume.is_disabled("unpack"): # Autoresume is invalid, SEEDCACHE _unpack = True invalid_snapshot = True + log.notice('Resume point "unpack is disabled" is True, invalidating snapshot... :(') elif os.path.isfile(self.settings["source_path"]) \ and self.settings["source_path_hash"] != clst_unpack_hash: # Autoresume is invalid, tarball _unpack = True invalid_snapshot = True + log.notice('Resume point "source_path_hash" is invalid... :(') unpack_info['source'] = file_check(unpack_info['source']) else: