diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-04-05 15:31:28 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-04-05 15:31:28 +0000 |
commit | c385cf792ecefa9181b9febec027f101fee112e1 (patch) | |
tree | fdd99f9420d145b341c2c94fb8bf390dc63ba656 /trunk/src | |
parent | 26eb4c44d95a494cff0a8fbceabb157362288803 (diff) | |
download | simplepkg-c385cf792ecefa9181b9febec027f101fee112e1.tar.gz simplepkg-c385cf792ecefa9181b9febec027f101fee112e1.tar.bz2 |
common.sh: permission, owner and group reading fix on directories
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@241 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'trunk/src')
-rwxr-xr-x | trunk/src/jail-commit | 2 | ||||
-rwxr-xr-x | trunk/src/templatepkg | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/trunk/src/jail-commit b/trunk/src/jail-commit index ce34d92..c2d66b5 100755 --- a/trunk/src/jail-commit +++ b/trunk/src/jail-commit @@ -48,7 +48,7 @@ function template_merge { echo "" > $TEMPLATE_BASE.perms cd $TEMPLATE_BASE.d - for file in `find | grep -v -e "/.svn$" | grep -v -e "/.svn/"`; do + for file in `find | grep -v -e "/.svn$" | grep -v -e "/.svn/" | grep -v -e "^\.$"`; do if [[ -e "$file" && -e "$1/$file" ]]; then diff --git a/trunk/src/templatepkg b/trunk/src/templatepkg index c1b3b04..b184720 100755 --- a/trunk/src/templatepkg +++ b/trunk/src/templatepkg @@ -221,7 +221,7 @@ function template_update { exit 1 fi - echo Checking package list for template `basename $TEMPLATE_BASE` + echo Checking package list for template `basename $TEMPLATE_BASE`... for package in `ls -1 $ROOT/var/log/packages/`; do pack=`package_name $package` |