From ff2192f6dea1a6899fb662e8e355ae0b92bfc689 Mon Sep 17 00:00:00 2001 From: Steven Armstrong Date: Wed, 19 Oct 2011 14:54:15 +0200 Subject: [PATCH] remove legacy attributes: ran, prepared Signed-off-by: Steven Armstrong --- lib/cdist/core/object.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/cdist/core/object.py b/lib/cdist/core/object.py index a35182d2..5157d86a 100644 --- a/lib/cdist/core/object.py +++ b/lib/cdist/core/object.py @@ -130,8 +130,6 @@ class Object(object): parameters = fsproperty.DirectoryDictProperty(lambda obj: os.path.join(obj.base_path, obj.parameter_path)) explorers = fsproperty.DirectoryDictProperty(lambda obj: os.path.join(obj.base_path, obj.explorer_path)) changed = fsproperty.FileBooleanProperty(lambda obj: os.path.join(obj.absolute_path, "changed")) - prepared = fsproperty.FileBooleanProperty(lambda obj: os.path.join(obj.absolute_path, "prepared")) - ran = fsproperty.FileBooleanProperty(lambda obj: os.path.join(obj.absolute_path, "ran")) state = fsproperty.FileStringProperty(lambda obj: os.path.join(obj.absolute_path, "state")) source = fsproperty.FileListProperty(lambda obj: os.path.join(obj.absolute_path, "source")) code_local = fsproperty.FileStringProperty(lambda obj: os.path.join(obj.base_path, obj.code_local_path))