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/changelog | 2 ++ debian/postinst | 8 +++++++- 2 files changed, 9 insertions(+), 1 deletion(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index b80418b..fc1736a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@ etckeeper (0.38) UNRELEASED; urgency=low * Use hostname if hostname -f fails. Closes: #533295 + * Automatically commit on initial install, so users can + begin relying on etckeeper right away. Closes: #533290 -- Joey Hess Sun, 28 Jun 2009 16:29:17 -0400 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