65 lines
2.4 KiB
Python
Executable file
65 lines
2.4 KiB
Python
Executable file
#!/usr/bin/python3 -d
|
|
|
|
# Copyright (c) 2022 Johannes Findeisen <you@hanez.org>
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the 'Software'), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is furnished
|
|
# to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice (including the next
|
|
# paragraph) shall be included in all copies or substantial portions of the
|
|
# Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
# FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
|
|
# OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
|
|
# OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
import argparse
|
|
|
|
from logging import getLogger
|
|
from monipy.configuration import Configuration
|
|
from monipy.environment import Environment
|
|
from monipy.monipyd import Monipyd
|
|
|
|
"""
|
|
According to: https://wiki.unixpeople.org/linux_kernel_version_numbering
|
|
MAJOR.FEATURE.MINOR.FIXES
|
|
MAJOR changes can change the API. The lesser, the better.
|
|
FEATURE changes can, but should not break the API. New features are placed here. It expects a
|
|
complete documentation.
|
|
MINOR changes are "just-in-time" changes or small enhancements which should not affect the
|
|
documentation.
|
|
FIXES should never affect anything else then stability or security.
|
|
"""
|
|
__version__ = '0.1'
|
|
__author__ = 'Johannes Findeisen <you@hanez.org>'
|
|
|
|
logger = getLogger('monipy')
|
|
|
|
|
|
def parse_args():
|
|
parser = argparse.ArgumentParser(
|
|
description='monipyd is a infrastructure monitoring daemon.',
|
|
epilog='author: ' + __author__,
|
|
prog='monipyd')
|
|
|
|
parser.add_argument('configuration_path', metavar='CONFIGURATION_PATH',
|
|
help='the configuration path to use')
|
|
|
|
parser.add_argument('-v', '--version', action='version', version='%(prog)s ' + str(__version__))
|
|
|
|
return parser.parse_args()
|
|
|
|
|
|
def main():
|
|
args = parse_args()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|