diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2004-12-03 19:44:47 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2004-12-03 19:44:47 +0000 |
commit | bdc8183a0c37312af80fa9347b84f60c2fa624c3 (patch) | |
tree | 59a06a3d83101629505ab0808b19de03fd4daf04 | |
parent | c8e3ba448dd8ba83d78e8187de6783eb3e5a44d1 (diff) | |
download | bcfg2-bdc8183a0c37312af80fa9347b84f60c2fa624c3.tar.gz bcfg2-bdc8183a0c37312af80fa9347b84f60c2fa624c3.tar.bz2 bcfg2-bdc8183a0c37312af80fa9347b84f60c2fa624c3.zip |
add bundles into the mix
(Logical change 1.157)
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@698 ce84e21b-d406-0410-9b95-82705330c041
-rw-r--r-- | src/lib/Server/Metadata.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/Server/Metadata.py b/src/lib/Server/Metadata.py index ca42c8a1c..6838a7525 100644 --- a/src/lib/Server/Metadata.py +++ b/src/lib/Server/Metadata.py @@ -20,6 +20,7 @@ class Metadata(object): if (other.all or (other.image and (self.image == other.image)) or (other.classes and (other.classes in self.classes)) or (other.attributes and (other.attributes in self.attributes)) or + (other.bundles and (other.bundles in self.bundles)) or (other.hostname and (self.hostname == other.hostname))): return True else: |