From 5760db55fa4fc96974ad325c66831ce364a2fffa Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Thu, 25 Aug 2016 21:30:57 -0500 Subject: [PATCH] Delete hb_routing_rules.py --- hb_routing_rules.py | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 hb_routing_rules.py diff --git a/hb_routing_rules.py b/hb_routing_rules.py deleted file mode 100644 index 164a495..0000000 --- a/hb_routing_rules.py +++ /dev/null @@ -1,28 +0,0 @@ -RULES = { - 'MASTER-1': { - 'GROUP_HANGTIME': 5, - 'GROUP_VOICE': [ - {'NAME': 'STATEWIDE', 'ACTIVE': False, 'ON': [8,], 'OFF': [9,10], 'SRC_TS': 1, 'SRC_GROUP': 1, 'DST-TYPE': 'CLIENT', 'DST_NET': 'REPEATER-1', 'DST_TS': 2, 'DST_GROUP': 2}, - # When DMRD received on this MASTER, Time Slot 1, Talk Group 1; send to CLIENT-1 on Time Slot 2 Talk Group 2 - # This rule is NOT enabled by default - # This rule can be enabled by transmitting on TGID 8 - # This rule can be disabled by transmitting on TGID 9 or 10 - # Repeat the above line for as many rules for this IPSC network as you want. - ] - }, - 'REPEATER-1': { - 'GROUP_HANGTIME': 5, - 'GROUP_VOICE': [ - {'NAME': 'STATEWIDE', 'ACTIVE': False, 'ON': [8,], 'OFF': [9,10], 'SRC_TS': 1, 'SRC_GROUP': 1, 'DST-TYPE': 'MASTER', 'DST_NET': 'MASTER-1', 'DST_TS': 2, 'DST_GROUP': 2}, - # When DMRD received on this CLIENT, Time Slot 1, Talk Group 1; send to MASTER-1 on Time Slot 2 Talk Group 2 - # This rule is NOT enabled by default - # This rule can be enabled by transmitting on TGID 8 - # This rule can be disabled by transmitting on TGID 9 or 10 - # Repeat the above line for as many rules for this IPSC network as you want. - ] - }, -} - -if __name__ == '__main__': - from pprint import pprint - pprint(RULES) \ No newline at end of file