# if the package wasnt found, try to donwload it
if [[ "$package_downloaded" != "1" ]]; then
ARCH=$ARCH VERSION=$VERSION $SIMPLARET --get $pack -a
- for file in `find $STORAGE/$extrafolder -name $pack*tgz`; do
+
+ # it can be stored at the patches folder
+ for file in `find $PATCHES_DIR/$extrafolder -name $pack*tgz`; do
if [[ "`package_name $file`" == "$pack" ]]; then
package_file="$file"
break
fi
done
+
+ # or it can be stored at the standard packages folder
+ if [ -z "$package_file" ]; then
+ for file in `find $STORAGE/$extrafolder -name $pack*tgz`; do
+ if [[ "`package_name $file`" == "$pack" ]]; then
+ package_file="$file"
+ break
+ fi
+ done
+ fi
+
fi
# now tries to install the package, if available
# if the package is installed, download the patch
if [[ "$package_installed" != "1" ]]; then
- # TODO: verificar se eh a mesma versao e build number?
+ # TODO: verificar se eh a mesma versao e build number que esta instalada?
# DOWNLOAD_EVEN_IF_APPLIED?
simplaret_get $candidate
DOWNLOADED_PATCHES="$DOWNLOADED_PATCHES $candidate " # the ending space is important
# usage: simplaret_get_jail_patches <jail-folder>
local oldarch oldversion
- root="$1"
+
+ if [ ! -z "$1" ]; then
+ root="$1"
+ else
+ root="/"
+ fi
# save current arch and version
oldarch="$ARCH"
local jailpath
# first get patches from the root system
- simplaret_get_jail_patches /
+ simplaret_get_jail_patches
# then get the needed patches for each installed jail
if [ -s "$JAIL_LIST" ]; then