blob: 730fbe4f87604bd73bc607ea38132c861b714597 [file] [log] [blame]
# Copyright 2020 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Module to manage servod-wide recovery mode status."""
# Module flag to report whether servod instance is in recovery mode.
RECOVERY_ACTIVE = False
def set_recovery_active():
"""Activate recovery mode on the instance."""
global RECOVERY_ACTIVE
RECOVERY_ACTIVE = True
def is_recovery_active():
"""Report whether recovery mode is active."""
return RECOVERY_ACTIVE