summaryrefslogtreecommitdiff
path: root/init.d
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-01-04 18:34:54 -0500
committerJoey Hess <joey@kodama.kitenet.net>2008-01-04 18:34:54 -0500
commit7f95ccf12aa02db60f560a66fc43d8bae1e1175c (patch)
tree52d3f6912976bf46a0b26b6c0a129e218c1083d0 /init.d
parentbe1a6c1380e81a60c1801bff6ff1a760149633a1 (diff)
tricky stuff to do with storing metadata etc in pre-commit
git needs to git add the files to stage them as part of the current commit, but hg does not, and hg add doesn't do that. Create the files as part of init, this will cause them to be added, pre-commit, which hg needs.
Diffstat (limited to 'init.d')
-rwxr-xr-xinit.d/10restore-etckeeper2
-rwxr-xr-xinit.d/20restore-metadata2
2 files changed, 4 insertions, 0 deletions
diff --git a/init.d/10restore-etckeeper b/init.d/10restore-etckeeper
index 376524c..f49e70c 100755
--- a/init.d/10restore-etckeeper
+++ b/init.d/10restore-etckeeper
@@ -5,4 +5,6 @@ set -e
# should only be run on repositories you trust.
if [ -e .etckeeper ]; then
. ./.etckeeper
+else
+ touch .etckeeper
fi
diff --git a/init.d/20restore-metadata b/init.d/20restore-metadata
index 01c45e4..5d76b1b 100755
--- a/init.d/20restore-metadata
+++ b/init.d/20restore-metadata
@@ -7,4 +7,6 @@ set -e
# should only be run on repositories you trust.
if [ -e .metadata ]; then
metastore --apply --mtime
+else
+ metastore --save
fi