From dd45df9d9209f2f47042e76c32476a21884b7c52 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Mon, 7 Sep 2009 14:07:33 -0400 Subject: Change etckeeper uninit to not remove .gitignore (etc) file if it lacks the "managed by etckeeper" comment. Closes: #545137 --- uninit.d/50vcs-uninit | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) (limited to 'uninit.d') diff --git a/uninit.d/50vcs-uninit b/uninit.d/50vcs-uninit index c9896ed..eb9f13a 100755 --- a/uninit.d/50vcs-uninit +++ b/uninit.d/50vcs-uninit @@ -2,11 +2,23 @@ set -e if [ "$VCS" = git ]; then - rm -rf .git .gitignore + rm -rf .git + file=.gitignore elif [ "$VCS" = hg ]; then - rm -rf .hg .hgignore + rm -rf .hg + file=.hgignore elif [ "$VCS" = bzr ]; then - rm -rf .bzr .bzrignore + rm -rf .bzr + file=.bzrignore elif [ "$VCS" = darcs ]; then - rm -rf _darcs .darcsignore + rm -rf _darcs + file=.darcsignore +fi + +managed_by_etckeeper="managed by etckeeper" + +if ! grep -q "$managed_by_etckeeper" "$file"; then + echo "etckeeper: "$file" does not contain \"$managed_by_etckeeper\" comment; not removing" +else + rm -f $file fi -- cgit v1.2.3