]> git.proxmox.com Git - pmg-api.git/blob - PMG/RuleDB/ReceiverDomain.pm
log before restarting services on rewrite_config
[pmg-api.git] / PMG / RuleDB / ReceiverDomain.pm
1 package PMG::RuleDB::ReceiverDomain;
2
3 use strict;
4 use warnings;
5
6 use PMG::RuleDB::Domain;
7
8 use base qw(PMG::RuleDB::Domain);
9
10 sub otype {
11 return 1008;
12 }
13
14 sub receivertest {
15 return 1;
16 }
17
18 1;