LSMS/scripts/config/verify_deb_packages.py

11 lines
227 B
Python
Raw Normal View History

2021-12-27 13:52:26 +01:00
from typing import List
# Executable of debsums.
DEBSUMS_EXE = "/usr/bin/debsums"
# List of changed deb package files to ignore.
FILE_WHITELIST = [] # type: List[str]
# Is the script allowed to run or not?
ACTIVATED = True