diff options
-rw-r--r-- | Makefile | 12 | ||||
-rw-r--r-- | README | 9 | ||||
-rwxr-xr-x | debian/rules | 2 |
3 files changed, 7 insertions, 16 deletions
@@ -1,14 +1,6 @@ install: - mkdir -p $(PREFIX)/usr/lib/etckeeper/ - cp -a *.d $(PREFIX)/usr/lib/etckeeper/ - + mkdir -p $(PREFIX)/etc/etckeeper/ + cp -a *.d $(PREFIX)/etc/etckeeper/ install -D etckeeper $(PREFIX)/usr/bin/etckeeper install -m 0644 -D apt.conf $(PREFIX)/etc/apt/apt.conf.d/05etckeeper install -m 0644 -D etckeeper.1 $(PREFIX)/usr/share/man/man1/etckeeper.1 - - for dir in *.d; do \ - mkdir -p $(PREFIX)/etc/etckeeper/$$dir; \ - for file in $$dir/*; do \ - ln -sf /usr/lib/etckeeper/$$file $(PREFIX)/etc/etckeeper/$$file; \ - done; \ - done @@ -125,10 +125,9 @@ control, the sky's the limit.. ## configuration etckeeper uses `run-parts` to run the executable files in -`/etc/etckeeper/$command.d/`. By default these directories contain a bunch -of symlinks to the actual files; you can remove or reorder the symlinks, or -add your own custom files. Each individual file is short, simple, and does -only one action. +`/etc/etckeeper/$command.d/`. You can modify these files, or add your own +custom files. Each individual file is short, simple, and does only one +action. For example, here's how to configure it to run `git gc` after each apt run, which will save a lot of disk space: @@ -142,7 +141,7 @@ which will save a lot of disk space: Here's how to disable the automatic commits after each apt run, while still letting it git-add new files and git-rm removed ones: - rm /etc/etckeeper/post-apt.d/75git-commit + chmod -x /etc/etckeeper/post-apt.d/75git-commit Note that the etckeeper commands are careful to not hardcode anything about git. If you want to use some other revision control system, that's diff --git a/debian/rules b/debian/rules index a759dac..3518ceb 100755 --- a/debian/rules +++ b/debian/rules @@ -14,7 +14,7 @@ binary-indep: build dh_testdir dh_testroot dh_clean -k - $(MAKE) PREFIX=debian/etckeeper + $(MAKE) install PREFIX=debian/etckeeper dh_installdocs README dh_installexamples dh_installchangelogs |