Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

Add support for Ubuntu 20.04 #121

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion build_mesos
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ function init_scripts {
mkdir -p usr/lib/systemd/system
cp "$this"/systemd/master.systemd usr/lib/systemd/system/mesos-master.service
cp "$this"/systemd/slave.systemd usr/lib/systemd/system/mesos-slave.service ;;
debian/8*|debian/9*|ubuntu/15*|ubuntu/16*|ubuntu/17*|ubuntu/18*)
debian/8*|debian/9*|ubuntu/15*|ubuntu/16*|ubuntu/17*|ubuntu/18*|ubuntu/20*)
mkdir -p lib/systemd/system
cp "$this"/systemd/master.systemd lib/systemd/system/mesos-master.service
cp "$this"/systemd/slave.systemd lib/systemd/system/mesos-slave.service ;;
Expand Down Expand Up @@ -344,6 +344,7 @@ function find_gem_bin {
function deb_ {
local libcurl_package
case "$linux" in
ubuntu/20*) libcurl_package="libcurl4" ;;
ubuntu/18*) libcurl_package="libcurl4" ;;
*) libcurl_package="libcurl3" ;;
esac
Expand Down