From b6903b7897e050cdbb63a37c696fb1f4c9f0c752 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 8 Jul 2009 14:40:11 -0400 Subject: Automatically commit on initial install, so users can begin relying on etckeeper right away. Closes: #533290 --- debian/postinst | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'debian/postinst') diff --git a/debian/postinst b/debian/postinst index c87a713..496a5d8 100644 --- a/debian/postinst +++ b/debian/postinst @@ -77,7 +77,13 @@ configure) # Fresh install. . /etc/etckeeper/etckeeper.conf || true if [ -n "$VCS" ] && [ -x "`which $VCS 2>/dev/null`" ]; then - etckeeper init || echo "etckeeper init failed; run it by hand" >&2 + if etckeeper init; then + if ! etckeeper commit "Initial commit"; then + echo "etckeeper commit failed; run it by hand" >&2 + fi + else + echo "etckeeper init failed; run it by hand" >&2 + fi else echo "etckeeper init not ran as $VCS is not installed" >&2 fi -- cgit v1.2.3