diff options
-rw-r--r-- | trunk/doc/CHANGELOG | 9 | ||||
-rwxr-xr-x | trunk/src/mkjail | 6 |
2 files changed, 12 insertions, 3 deletions
diff --git a/trunk/doc/CHANGELOG b/trunk/doc/CHANGELOG index c9bccf0..4cdbd8a 100644 --- a/trunk/doc/CHANGELOG +++ b/trunk/doc/CHANGELOG @@ -1,6 +1,15 @@ simplepkg changelog =================== +0.5pre3 +------- + + - again, lots of bugfixes + + - jail-commit: + - update a template just once if finds more than one entry + for a template in the jailist + 0.5pre2 ======= diff --git a/trunk/src/mkjail b/trunk/src/mkjail index 27bf8d5..c4bf882 100755 --- a/trunk/src/mkjail +++ b/trunk/src/mkjail @@ -45,9 +45,9 @@ function exec_post_install_scripts { echo "$BASENAME: executing template scripts..." if [ -d "$TEMPLATE_BASE.s" ]; then - for script in `ls $TEMPLATE_BASE.s/`; do - if [ -x "$TEMPLATE_BASE.s/$script" ]; then - exec $TEMPLATE_BASE.s/$script $1 $2 + for command in `ls $TEMPLATE_BASE.s/`; do + if [ -x "$TEMPLATE_BASE.s/$command" ]; then + exec $TEMPLATE_BASE.s/$command $1 $2 fi done fi |