test: skip TEST-69-SHUTDOWN on ubuntu too

This commit is contained in:
Nick Rosbrook
2024-12-17 11:10:42 -05:00
committed by Luca Boccassi
parent 8d08f18b52
commit 96c4d9d94d

View File

@@ -13,7 +13,7 @@ def main():
with open("/usr/lib/os-release") as f:
for line in f:
if line.startswith("ID="):
if "debian" in line:
if "debian" in line or "ubuntu" in line:
sys.exit(77)
logger = logging.getLogger("test-shutdown")