Browse Source

cockpit-docker

merge-requests/26/head
Steven Foerster 6 years ago
parent
commit
69205b2a38
  1. 7
      scripts/subinstallers/cockpit.sh

7
scripts/subinstallers/cockpit.sh

@ -5,7 +5,12 @@ figlet "Mistborn: Installing Cockpit"
if [ "$DISTRO" == "ubuntu" ]; then if [ "$DISTRO" == "ubuntu" ]; then
echo "Ubuntu backports enabled by default" echo "Ubuntu backports enabled by default"
sudo apt-get install -y cockpit cockpit-docker sudo apt-get install -y cockpit
if [ "$VERSION_ID" == "18.04" ]; then
# no longer supported upstream in Ubuntu 20.04
sudo apt-get install -y cockpit-docker
fi
elif [ "$DISTRO" == "debian" ]; then elif [ "$DISTRO" == "debian" ]; then
sudo grep -qF "buster-backports" /etc/apt/sources.list.d/backports.list \ sudo grep -qF "buster-backports" /etc/apt/sources.list.d/backports.list \

Loading…
Cancel
Save