diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2020-10-23 16:08:45 -0300 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2020-10-23 16:08:45 -0300 | 
| commit | 9e06edd6b6569e225c000b2ec57e5fff96ce0ca0 (patch) | |
| tree | 561fb7687ffae4a0c4d1bf5fed9a6b46abdab2b8 | |
| parent | 7df2e5a03fa8842f8950eeaf4f1c5b8d4369f6e4 (diff) | |
| download | kvmx-9e06edd6b6569e225c000b2ec57e5fff96ce0ca0.tar.gz kvmx-9e06edd6b6569e225c000b2ec57e5fff96ce0ca0.tar.bz2 | |
Fix: image creation for the current debian testing
| -rwxr-xr-x | kvmx-create | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/kvmx-create b/kvmx-create index 71e9dc0..a9cc62a 100755 --- a/kvmx-create +++ b/kvmx-create @@ -248,7 +248,7 @@ function kvmx_create_custom {    # Apt    if [ "$distro" == "debian" ]; then -    if [ "$version" != "sid" ]; then +    if [ "$version" != "sid" ] && [ "$version" != "bullseye" ]; then        echo "deb http://security.debian.org/ $version/updates main contrib non-free"     | $SUDO tee -a $WORK/etc/apt/sources.list > /dev/null        echo "deb-src http://security.debian.org/ $version/updates main contrib non-free" | $SUDO tee -a $WORK/etc/apt/sources.list > /dev/null      fi | 
