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