diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-04-06 21:31:02 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-04-06 21:31:02 +0000 |
commit | 865931f616e333c151f70536344d877321f27e96 (patch) | |
tree | e607044cdb16461e19385f5412cbc6fb7fb09c72 /trunk/src | |
parent | 17aafaf006bbe51ca6f9482c8e15b5f6e423061d (diff) | |
download | simplepkg-865931f616e333c151f70536344d877321f27e96.tar.gz simplepkg-865931f616e333c151f70536344d877321f27e96.tar.bz2 |
mkjail: small change
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@300 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'trunk/src')
-rwxr-xr-x | trunk/src/mkjail | 6 |
1 files changed, 3 insertions, 3 deletions
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 |