From 82548772408f5798ce81b6b5dd2e7d8e3bab5f2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Lecour?= Date: Fri, 22 Mar 2019 23:52:06 +0100 Subject: [PATCH] Add IS_ETCGIT to check for /etc.git Git repository --- evocheck.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/evocheck.sh b/evocheck.sh index 3dd0066..0f1b1f9 100755 --- a/evocheck.sh +++ b/evocheck.sh @@ -69,6 +69,7 @@ IS_KERNELUPTODATE=1 IS_UPTIME=1 IS_MUNINRUNNING=1 IS_BACKUPUPTODATE=1 +IS_ETCGIT=1 IS_GITPERMS=1 IS_NOTUPGRADED=1 IS_TUNE2FS_M5=1 @@ -743,6 +744,10 @@ if is_debian; then fi fi + if [ "$IS_ETCGIT" = 1 ]; then + (cd /etc; git rev-parse --is-inside-work-tree > /dev/null 2>&1) || failed "IS_ETCGIT" "/etc is not a Git repository" + fi + # Check if /etc/.git/ has read/write permissions for root only. if [ "$IS_GITPERMS" = 1 ]; then if test -d /etc/.git; then