diff options
| author | erdgeist <erdgeist@erdgeist.org> | 2006-01-07 13:46:55 +0000 |
|---|---|---|
| committer | erdgeist <erdgeist@erdgeist.org> | 2006-01-07 13:46:55 +0000 |
| commit | 15283dbe62af722d0e65940b1477da49fd9c5d2a (patch) | |
| tree | fbd906e1336cf429c1a90625b0b8429607558778 | |
| parent | 2ba6e4cd89a6e34922b2d013cee5273135734797 (diff) | |
globbing is essential when specifying /pkg/*
| -rw-r--r-- | ezjail-config.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ezjail-config.sh b/ezjail-config.sh index e7e9d9c..9176f56 100644 --- a/ezjail-config.sh +++ b/ezjail-config.sh | |||
| @@ -55,8 +55,8 @@ for file in $ezjail_flavour_files; do | |||
| 55 | done | 55 | done |
| 56 | 56 | ||
| 57 | # install packages | 57 | # install packages |
| 58 | set -o noglob | 58 | set +o noglob |
| 59 | [ -d /pkg ] && cd /pkg && pkg_add * | 59 | [ -d /pkg ] && pkg_add /pkg/* |
| 60 | 60 | ||
| 61 | # source post install script | 61 | # source post install script |
| 62 | [ -d /ezjail.postinstall ] && . /ezjail.postinstall | 62 | [ -d /ezjail.postinstall ] && . /ezjail.postinstall |
