diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-07-08 14:40:11 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-07-08 14:40:11 -0400 |
commit | b6903b7897e050cdbb63a37c696fb1f4c9f0c752 (patch) | |
tree | cc254b16e2f4b9d837f04346f5ee97ec70b2d043 /debian | |
parent | 51a2682158fe2ae7ca7283d2bf2addeedfd82460 (diff) |
Automatically commit on initial install, so users can begin relying on etckeeper right away. Closes: #533290
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 2 | ||||
-rw-r--r-- | debian/postinst | 8 |
2 files changed, 9 insertions, 1 deletions
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 <joeyh@debian.org> 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 |