open-eid / linux-installer

Ubuntu meta package
55 stars 21 forks source link

Workaround for Debian Buster - Linux Installer #53

Closed memoricab closed 5 years ago

memoricab commented 5 years ago

"Debian GNU/Linux 10 (buster)"

-- Workaround: Added bionic repository in case $distro is debian

I have replaced `Debian) make_warn "Debian is not officially supported" echo "### Installing possibly missing https support for APT (apt-get install apt-transport-https)"

Debian lacks https support for apt, by default

  sudo apt-get install apt-transport-https
  case "$codename" in
    *)
      make_fail "Debian $codename is not officially supported"
      ;;
  esac
  ;;`

to

`Debian) make_warn "Debian is not officially supported" echo "### Installing possibly missing https support for APT (apt-get install apt-transport-https)"

Debian lacks https support for apt, by default

  sudo apt-get install apt-transport-https
  add_repository bionic
;;`

Worked fine

metsma commented 5 years ago

Can you create pull request

metsma commented 5 years ago

Fixed by #55