Browse Source

fixed resource leak in mod_packages.sh (to unmount the correct dir)

git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1049 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Rene Rebe 21 years ago
parent
commit
0392fb751f
2 changed files with 2 additions and 1 deletions
  1. +1
    -0
      Documentation/Developers/CHANGELOG-RENE
  2. +1
    -1
      package/base/sysfiles/stone_mod_packages.sh

+ 1
- 0
Documentation/Developers/CHANGELOG-RENE

@ -5,6 +5,7 @@ whole rxr-tree.
- fixed Create-SrcTar to not create a CVS dir and not archive .svn/CVS files
- fixed zlib (to build libz.a)
- fixed resource leak in mod_packages.sh (to unmount the correct dir)
*) 2003-08-09 (2.0.0-camp - 2.0.0-rc1)

+ 1
- 1
package/base/sysfiles/stone_mod_packages.sh

@ -57,7 +57,7 @@ read_ids() {
for x in `cd $mnt; ls -d */pkgs | cut -f1 -d/` ; do
cmd="$cmd '$x' 'ROCKCFG_SHORTID=\"$x\"'"
done
umount $dir
umount $mnt
else
cmd="$cmd 'The medium could not be mounted!' ''"
fi

Loading…
Cancel
Save