mirror of
https://github.com/sqall01/LSMS.git
synced 2024-11-16 17:18:26 +01:00
10 lines
227 B
Python
10 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
|