LSMS/scripts/config/verify_deb_packages.py

11 lines
227 B
Python

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