Well, I copied CloseParentAfterClosedChilds.pm to TestACL.pm in the same directory.
I added to Config.pm this code:
$Self->{'Ticket::Acl::Module'}->{'2-Ticket::Acl::Module'} = {
'Module' => 'Kernel::System::Ticket::Acl::TestACL',
};
$Param{Acl}->{TestACL} = {
# match properties
Properties => {
},
# return possible options (black list)
PossibleNot => {
# possible ticket options (black list)
Ticket => {
Priority => ["1 very low"],
},
}
}
return 1;
open(MYFILE, '>>/var/tmp/acltest.log');
print MYFILE "I AM IN MODULE\n";
close(MYFILE);