diff options
author | Joey Hess <joey@kitenet.net> | 2011-07-12 14:35:17 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-07-12 14:35:17 -0400 |
commit | 187e553f70c83599d0e7dc5b106dcfbfb46aba12 (patch) | |
tree | 291f4815b0ce8be95d4e2e9771c5c6c86fc285e2 | |
parent | 2637b34498704d791106a017b939eb912f9027e0 (diff) |
Handle files with % in their names.
-rw-r--r-- | debian/changelog | 1 | ||||
-rwxr-xr-x | pre-commit.d/30store-metadata | 23 |
2 files changed, 13 insertions, 11 deletions
diff --git a/debian/changelog b/debian/changelog index 8fe4b37..3446458 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ etckeeper (0.56) UNRELEASED; urgency=low * Converted to use dh_python2. Closes: #616800 + * Handle files with % in their names. -- Joey Hess <joeyh@debian.org> Tue, 28 Jun 2011 13:43:05 -0400 diff --git a/pre-commit.d/30store-metadata b/pre-commit.d/30store-metadata index f4125f6..76a3d65 100755 --- a/pre-commit.d/30store-metadata +++ b/pre-commit.d/30store-metadata @@ -36,6 +36,12 @@ filter_ignore() { fi } +statf() { + while read statfile; do + echo "$(stat --format="$1" "$statfile") '$statfile'" + done +} + generate_metadata() { # This function generates the script commands to fix any files # that aren't owner=root, group=root, or mode=0644 or 0755. @@ -71,28 +77,23 @@ generate_metadata() { printf "ln -sf '%s' '%s'\n" "$dest" "$link" done fi - + # Find all files and directories that don't have the current user as the owner - find $NOVCS \! -user "$(id -u)" -exec stat --format="maybe chown %U '{}'" {} \; \ - | sort | filter_unknown 'maybe chown' owner + find $NOVCS \! -user "$(id -u)" -print | statf "maybe chown %U" | sort | filter_unknown 'maybe chown' owner # Find all files and directories that don't have root as the group - find $NOVCS \! -group $(id -g) -exec stat --format="maybe chgrp %G '{}'" {} \; \ - | sort | filter_unknown 'maybe chgrp' group + find $NOVCS \! -group $(id -g) -print | statf "maybe chgrp %G" | sort | filter_unknown 'maybe chgrp' group # Find all directories that aren't 0755 - find $NOVCS -type d \! -perm 0755 \ - -exec stat --format="maybe chmod %a '{}'" {} \; | sort + find $NOVCS -type d \! -perm 0755 -print | statf "maybe chmod %a" | sort if [ "$VCS" = darcs ]; then # Find all files that aren't 0644 (darcs doesn't maintain # the executable bit). - find $NOVCS -type f \! -perm 0644 \ - -exec stat --format="maybe chmod %a '{}'" {} \; | sort + find $NOVCS -type f \! -perm 0644 -print | statf "maybe chmod %a" | sort else # Find all files that aren't 0644 or 0755 (we can assume the VCS will # maintain the executable bit). - find $NOVCS -type f \! -perm 0644 \! -perm 0755 \ - -exec stat --format="maybe chmod %a '{}'" {} \; | sort + find $NOVCS -type f \! -perm 0644 \! -perm 0755 -print | statf "maybe chmod %a" | sort fi # We don't handle xattrs. |