Beispiel #1
0
def read_stored_checksum(target, timestamped=True):
    """Read the checksum.

    Returns the checksum (as hex) or None.
    """
    return virtutils.read_stored_info(target,
                                      field='sha1',
                                      timestamped=timestamped)
Beispiel #2
0
def read_stored_checksum(target):
    """Read the checksum.

    Returns the checksum (as hex) or None.
    """
    return virtutils.read_stored_info(target, field='sha1')
Beispiel #3
0
def read_stored_checksum(target):
    """Read the checksum.

    Returns the checksum (as hex) or None.
    """
    return virtutils.read_stored_info(target, field='sha1')
Beispiel #4
0
def read_stored_checksum(target, timestamped=True):
    """Read the checksum.

    Returns the checksum (as hex) or None.
    """
    return virtutils.read_stored_info(target, field="sha1", timestamped=timestamped)