From a9ce9965c06571a57522106691dac2f9892125ba Mon Sep 17 00:00:00 2001 From: Scott Bronson Date: Wed, 12 Mar 2008 16:15:10 -0700 Subject: Remove metastore, use simple find scripts instead. --- init.d/20restore-metadata | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'init.d') diff --git a/init.d/20restore-metadata b/init.d/20restore-metadata index 5d76b1b..be34bc7 100755 --- a/init.d/20restore-metadata +++ b/init.d/20restore-metadata @@ -1,12 +1,8 @@ #!/bin/sh set -e -# Note that metastore doesn't check that the .metastore file only changes -# perms of files in the current directory. It's ok to trust the .metastore -# file won't do anything shady, because, as documented, etckeeper-init -# should only be run on repositories you trust. -if [ -e .metadata ]; then - metastore --apply --mtime -else - metastore --save +# It's ok to trust that the .fix-metadata file won't do anything shady because, +# as documented, etckeeper-init should only be run on repositories you trust. +if [ -x .fix-metadata ]; then + ./.fix-metadata fi -- cgit v1.2.3