From 357a708e613c83ae35faaa70514a8f4e1179079b Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Mon, 5 Nov 2007 16:25:21 -0500 Subject: implemented pre-apt checks other development too.. --- pre-commit.d/10warn-empty | 7 ------- pre-commit.d/10warn-empty-directory | 7 +++++++ pre-commit.d/10warn-hardlinks | 2 +- pre-commit.d/10warn-special | 7 ------- pre-commit.d/10warn-special-file | 7 +++++++ 5 files changed, 15 insertions(+), 15 deletions(-) delete mode 100755 pre-commit.d/10warn-empty create mode 100755 pre-commit.d/10warn-empty-directory delete mode 100755 pre-commit.d/10warn-special create mode 100755 pre-commit.d/10warn-special-file (limited to 'pre-commit.d') diff --git a/pre-commit.d/10warn-empty b/pre-commit.d/10warn-empty deleted file mode 100755 index 8dcb357..0000000 --- a/pre-commit.d/10warn-empty +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh -set -e -empty=$(find -type f -empty | grep -v /.git/) -if [ -n "$empty" ]; then - echo "warning: empty directories, not tracked by git:" >&2 - echo "$empty" >&2 -fi diff --git a/pre-commit.d/10warn-empty-directory b/pre-commit.d/10warn-empty-directory new file mode 100755 index 0000000..eed41ae --- /dev/null +++ b/pre-commit.d/10warn-empty-directory @@ -0,0 +1,7 @@ +#!/bin/sh +set -e +empty=$(find -type f -empty | grep -v /.git/) +if [ -n "$empty" ]; then + echo "etckeeper warning: empty directories, not tracked by git:" >&2 + echo "$empty" >&2 +fi diff --git a/pre-commit.d/10warn-hardlinks b/pre-commit.d/10warn-hardlinks index f449fed..29f007b 100755 --- a/pre-commit.d/10warn-hardlinks +++ b/pre-commit.d/10warn-hardlinks @@ -2,6 +2,6 @@ set -e hardlinks=$(find -type f -not -links 1 | grep -v /.git/) if [ -n "$hardlinks" ]; then - echo "warning: hardlinked files could cause problems with git:" >&2 + echo "etckeeper warning: hardlinked files could cause problems with git:" >&2 echo "$hardlinks" >&2 fi diff --git a/pre-commit.d/10warn-special b/pre-commit.d/10warn-special deleted file mode 100755 index 92d1d3d..0000000 --- a/pre-commit.d/10warn-special +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh -set -e -special=$(find -not -type d -not -type f -not -type l | grep -v /.git/) -if [ -n "$special" ]; then - echo "warning: special files could cause problems with git:" >&2 - echo "$special" >&2 -fi diff --git a/pre-commit.d/10warn-special-file b/pre-commit.d/10warn-special-file new file mode 100755 index 0000000..aa5c683 --- /dev/null +++ b/pre-commit.d/10warn-special-file @@ -0,0 +1,7 @@ +#!/bin/sh +set -e +special=$(find -not -type d -not -type f -not -type l | grep -v /.git/) +if [ -n "$special" ]; then + echo "etckeeper warning: special files could cause problems with git:" >&2 + echo "$special" >&2 +fi -- cgit v1.2.3