diff options
author | Joerg Schirottke <master@kanotix.com> | 2018-12-29 13:26:09 +0100 |
---|---|---|
committer | Holger Paradies <retabell@gmx.de> | 2018-12-29 16:16:05 +0100 |
commit | 232410fe0596cdee45e54d8e7ed705e4bd66294e (patch) | |
tree | f4037b1ccaa1c521a9777999a55878f0ea7d4643 /auto | |
parent | 08464bbe4f7f0f0baadadebb9ff7cc0e7cc875cc (diff) | |
download | kanotix-232410fe0596cdee45e54d8e7ed705e4bd66294e.zip kanotix-232410fe0596cdee45e54d8e7ed705e4bd66294e.tar.gz |
use vbox-bionic repo for buster
Diffstat (limited to 'auto')
-rwxr-xr-x | auto/config | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/auto/config b/auto/config index cac4fb5..b7c5282 100755 --- a/auto/config +++ b/auto/config @@ -85,7 +85,13 @@ grep -wq retabell <<<"$LB_PACKAGES_LISTS" && LB_REPOSITORIES+=" retabell" grep -wq acritox <<<"$LB_PACKAGES_LISTS" && LB_REPOSITORIES+=" acritox dragonfire-acritox" grep -wq hellfire <<<"$LB_PACKAGES_LISTS" && LB_REPOSITORIES+=" hellfire" grep -wq trinity <<<"$LB_PACKAGES_LISTS" && LB_REPOSITORIES+=" trinity" -grep -wq -e virtualbox -e vbox <<<"$LB_PACKAGES $LB_PACKAGES_LISTS" && LB_REPOSITORIES+=" vbox" +if grep -wq -e virtualbox -e vbox <<<"$LB_PACKAGES $LB_PACKAGES_LISTS"; then + if [ "$LB_DISTRIBUTION" = "buster" ]; then + LB_REPOSITORIES+=" vbox-bionic" + else + LB_REPOSITORIES+=" vbox" + fi +fi grep -wq bmguck <<<"$LB_PACKAGES_LISTS" && LB_REPOSITORIES+=" bmguck" grep -wq -e opera <<<"$LB_PACKAGES $LB_PACKAGES_LISTS" && LB_REPOSITORIES+=" opera" grep -wq google-chrome <<<"$LB_PACKAGES $LB_PACKAGES_LISTS" && LB_REPOSITORIES+=" google-chrome" |