You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
810 B
19 lines
810 B
9 years ago
|
set(foo_preinst "^echo default_preinst$")
|
||
9 years ago
|
# NOTE: optional dot at the end of permissions regex is for SELinux enabled systems
|
||
|
set(foo_preinst_permissions_regex "-rwxr-xr-x\.? .*")
|
||
9 years ago
|
set(foo_prerm "^echo default_prerm$")
|
||
9 years ago
|
set(foo_prerm_permissions_regex "-rwxr-xr-x\.? .*")
|
||
9 years ago
|
verifyDebControl("${FOUND_FILE_1}" "foo" "preinst;prerm")
|
||
|
|
||
|
set(bar_preinst "^echo bar_preinst$")
|
||
9 years ago
|
set(bar_preinst_permissions_regex "-rwx------\.? .*")
|
||
9 years ago
|
set(bar_prerm "^echo bar_prerm$")
|
||
9 years ago
|
set(bar_prerm_permissions_regex "-rwx------\.? .*")
|
||
9 years ago
|
verifyDebControl("${FOUND_FILE_2}" "bar" "preinst;prerm")
|
||
|
|
||
|
set(bas_preinst "^echo default_preinst$")
|
||
9 years ago
|
set(bas_preinst_permissions_regex "-rwxr-xr-x\.? .*")
|
||
9 years ago
|
set(bas_prerm "^echo default_prerm$")
|
||
9 years ago
|
set(bas_prerm_permissions_regex "-rwxr-xr-x\.? .*")
|
||
9 years ago
|
verifyDebControl("${FOUND_FILE_3}" "bas" "preinst;prerm")
|