diff options
author | erdgeist <erdgeist@erdgeist.org> | 2013-05-10 14:54:49 +0000 |
---|---|---|
committer | erdgeist <erdgeist@erdgeist.org> | 2013-05-10 14:54:49 +0000 |
commit | 84db3c9c8a387ed9132b00500c3fd8386851ad40 (patch) | |
tree | b62aa973f27d93b76bcf8e1a46f2d81ac066eaef /examples/example/etc/rc.d | |
parent | 0713769a1941de549aa64bfda30dac73449f1519 (diff) |
Fix call to pkg_add so that all packages are installed and none is being fetched. Thanks to Dan Langille
Diffstat (limited to 'examples/example/etc/rc.d')
-rwxr-xr-x | examples/example/etc/rc.d/ezjail.flavour.example | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/example/etc/rc.d/ezjail.flavour.example b/examples/example/etc/rc.d/ezjail.flavour.example index de09abb..f7f2113 100755 --- a/examples/example/etc/rc.d/ezjail.flavour.example +++ b/examples/example/etc/rc.d/ezjail.flavour.example | |||
@@ -54,7 +54,7 @@ flavour_setup() { | |||
54 | # Install all packages previously put to /pkg | 54 | # Install all packages previously put to /pkg |
55 | # Remove package files afterwards | 55 | # Remove package files afterwards |
56 | 56 | ||
57 | [ -d /pkg ] && PACKAGESITE=file:// pkg_add -r /pkg/* | 57 | [ -d /pkg ] && cd /pkg && pkg_add /pkg/* |
58 | rm -rf /pkg | 58 | rm -rf /pkg |
59 | 59 | ||
60 | # Postinstall | 60 | # Postinstall |