From 7a9c4e0d8ae146c7ce3f85f5e754bf49ddb7267e Mon Sep 17 00:00:00 2001 From: Waldek Date: Tue, 17 Sep 2019 21:16:39 +0200 Subject: [PATCH] Delete config_SAMPLE.py --- config_SAMPLE.py | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100755 config_SAMPLE.py diff --git a/config_SAMPLE.py b/config_SAMPLE.py deleted file mode 100755 index 905ba77..0000000 --- a/config_SAMPLE.py +++ /dev/null @@ -1,24 +0,0 @@ -REPORT_NAME = 'system.domain.name' # Name of the monitored HBlink system -CONFIG_INC = True # Include HBlink stats -HOMEBREW_INC = True # Include HomeBrew Peers stats -BRIDGES_INC = True # Include Bridge stats (confbrige.py) -HBLINK_IP = '127.0.0.1' # HBlink's IP Address -HBLINK_PORT = 4321 # HBlink's TCP reporting socket -FREQUENCY = 10 # Frequency to push updates to web clients -WEB_SERVER_PORT = 8080 # Has to be above 1024 if you're not running as root -CLIENT_TIMEOUT = 300 # Clients are timed out after this many seconds, 0 to disable - -# Files and stuff for loading alias files for mapping numbers to names -PATH = './' # MUST END IN '/' -PEER_FILE = 'peer_ids.json' # Will auto-download from DMR-MARC -SUBSCRIBER_FILE = 'subscriber_ids.json' # Will auto-download from DMR-MARC -TGID_FILE = 'talkgroup_ids.json' # User provided, should be in "integer TGID, TGID name" format -LOCAL_SUB_FILE = 'local_subscriber_ids.json' # User provided (optional, leave '' if you don't use it), follow the format of DMR-MARC -LOCAL_PEER_FILE = 'local_peer_ids.json' # User provided (optional, leave '' if you don't use it), follow the format of DMR-MARC -FILE_RELOAD = 7 # Number of days before we reload DMR-MARC database files -PEER_URL = 'https://www.radioid.net/static/rptrs.json' -SUBSCRIBER_URL = 'https://www.radioid.net/static/users.json' - -# Settings for log files -LOG_PATH = '/var/log/' # MUST END IN '/' -LOG_NAME = 'webtables.log'