diff options
author | Roger Leigh <rleigh@debian.org> | 2013-04-02 21:49:21 +0100 |
---|---|---|
committer | Roger Leigh <rleigh@debian.org> | 2013-04-02 22:24:07 +0100 |
commit | af6ed1dbd724ff20bf28f13d2aac4f22b4958693 (patch) | |
tree | 6ad16ef0a6f30e8ef388d85203e53ce2dd6bffbd /etc | |
parent | 0eba95b22c73eee00fe1bd3b4ddd9daeaaf42624 (diff) | |
download | schroot-af6ed1dbd724ff20bf28f13d2aac4f22b4958693.tar.gz |
libexec: Rename schroot-listmounts to listmounts
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/setup.d/10mount | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/setup.d/10mount b/etc/setup.d/10mount index 983a0bac..938ad046 100755 --- a/etc/setup.d/10mount +++ b/etc/setup.d/10mount @@ -57,7 +57,7 @@ do_umount_all() # filesystems as we read it, we can miss mount entries due to # the file changing as we read it. This needs fixing in the # kernel, but an exclusive lock surrounding the - # schroot-listmounts invocation is a partial fix. This + # listmounts invocation is a partial fix. This # prevents racing when multiple schroot processes are running. # Note that this does not prevent the problem when programs # other than schroot mount and unmount filesystems (since they @@ -77,7 +77,7 @@ do_umount_all() fi ( flock 9 - mounts="$("$LIBEXEC_DIR/schroot-listmounts" -m "$1")" + mounts="$("$LIBEXEC_DIR/listmounts" -m "$1")" if [ "x$mounts" != 'x' ]; then echo "$mounts" | while read mountloc; do |