blob: 3e928fcc5bacf7e66f5302c2ac3c6c012d2380fc [file] [log] [blame]
# Copyright 2016 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""This module defines the Label Verifier class."""
import logging
import common
from autotest_lib.client.common_lib import hosts
class LabelVerifier(hosts.Verifier):
"""
Verifier to ensure a host's labels are up-to-date.
This verifier runs the host's update_label method to clear out old labels
that are not valid anymore and adds new labels that aren't already there.
"""
def verify(self, host):
try:
host.labels.update_labels(host)
except Exception as e:
logging.exception('updating labels: %s', e)
@property
def description(self):
return 'Ensure the host labels are up-to-date'