forked from HariSekhon/Nagios-Plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck_git_repo_bare.py
executable file
·90 lines (74 loc) · 2.63 KB
/
check_git_repo_bare.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#!/usr/bin/env python
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2016-07-25 14:57:36 +0100 (Mon, 25 Jul 2016)
#
# https://github.com/harisekhon/nagios-plugins
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn
# and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/harisekhon
#
"""
Nagios Plugin to check a Git repo is bare
You can negate the result if you want to check the repo isn't bare
Requires the 'git' command in the $PATH, otherwise you can set the path to the git
executable using the environment variable GIT_PYTHON_GIT_EXECUTABLE
See also check_git_checkout_branch.py
check_git_uncommitted_changes.py - handles untracked files and gives better feedback, reporting and stats
"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
#from __future__ import unicode_literals
import os
import sys
import traceback
import git
srcdir = os.path.abspath(os.path.dirname(__file__))
libdir = os.path.join(srcdir, 'pylib')
sys.path.append(libdir)
try:
# pylint: disable=wrong-import-position
from git import InvalidGitRepositoryError
from harisekhon.utils import CriticalError, validate_directory
from harisekhon import NagiosPlugin
except ImportError as _:
print(traceback.format_exc(), end='')
sys.exit(4)
__author__ = 'Hari Sekhon'
__version__ = '0.1'
class CheckGitRepoBare(NagiosPlugin):
def __init__(self):
# Python 2.x
super(CheckGitRepoBare, self).__init__()
# Python 3.x
# super().__init__()
self.msg = 'CheckGitRepoBare msg not defined'
self.ok()
def add_options(self):
self.add_opt('-d', '--directory', action='store', help='Path to git repo directory')
self.add_opt('--not-bare', action='store_true', help="Check repo isn't bare")
def run(self):
self.no_args()
directory = self.get_opt('directory')
validate_directory(directory)
directory = os.path.abspath(directory)
try:
repo = git.Repo(directory)
except InvalidGitRepositoryError:
raise CriticalError("directory '{}' does not contain a valid Git repository!".format(directory))
is_bare = repo.bare
self.msg = "git checkout bare = '{}' for directory '{}'".format(is_bare, directory)
if self.get_opt('not_bare'):
if is_bare:
self.critical()
else:
if not is_bare:
self.critical()
if __name__ == '__main__':
CheckGitRepoBare().main()