diff options
Diffstat (limited to 'src/simplaret')
-rwxr-xr-x | src/simplaret | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/simplaret b/src/simplaret index ae738f2..4ab5772 100755 --- a/src/simplaret +++ b/src/simplaret @@ -464,7 +464,7 @@ function simplaret_search_and_download_patch { # 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 @@ -482,7 +482,12 @@ function simplaret_get_jail_patches { # 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" @@ -529,7 +534,7 @@ function simplaret_get_patches { 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 |