mirror of
https://github.com/jgyates/genmon.git
synced 2026-08-12 15:32:00 -04:00
19 lines
563 B
Python
19 lines
563 B
Python
#!/usr/bin/env python
|
|
# -------------------------------------------------------------------------------
|
|
# FILE: program_defaults.py
|
|
# PURPOSE: default values
|
|
#
|
|
# AUTHOR: Jason G Yates
|
|
# DATE: 10-May-2019
|
|
#
|
|
# MODIFICATIONS:
|
|
# -------------------------------------------------------------------------------
|
|
|
|
|
|
# ------------ ProgramDefaults class ---------------------------------------------
|
|
class ProgramDefaults(object):
|
|
ConfPath = "/etc/genmon/"
|
|
LogPath = "/var/log/"
|
|
ServerPort = 9082
|
|
LocalHost = "127.0.0.1"
|
|
GENMON_VERSION = "2.0.2"
|