/etc/etckeeper/commit.d/30darcs-add is in etckeeper 1.9ubuntu2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/bin/sh
set -e
if [ "$VCS" = darcs ] && [ -d _darcs ]; then
rc=0
res=$( darcs add -qr . 2>&1 ) || rc=$?
if test $rc -ne 0; then
if ! test $rc -eq 2 -a "${res%No files were added}" != "$res"; then
printf "%s" "$res"
echo "etckeeper warning: darcs add failed" >&2
fi
fi
unset rc res
fi
|