Skip to content

Commit

Permalink
installer: drop dead code for very old distros
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-utkin committed Mar 6, 2024
1 parent 1ce067c commit 344b301
Showing 1 changed file with 0 additions and 52 deletions.
52 changes: 0 additions & 52 deletions installer/v3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,6 @@ then
exit
fi

# Ubuntu 14.04
trusty_install()
{
apt -y install gpg wget
wget -q https://dl.bluecherrydvr.com/key/bluecherry.asc -O- | apt-key add -
wget --output-document=/etc/apt/sources.list.d/bluecherry-trusty.list https://unstable.bluecherrydvr.com/sources.list.d/bluecherry-trusty-unstable.list
apt -y update
apt -y install bluecherry
service bluecherry restart
}

# Ubuntu 18.04
bionic_install()
{
Expand All @@ -36,17 +25,6 @@ bionic_install()
systemctl restart bluecherry
}

# Ubuntu 16.04
xenial_install()
{
apt -y install gpg wget
wget -q https://dl.bluecherrydvr.com/key/bluecherry.asc -O- | apt-key add -
wget --output-document=/etc/apt/sources.list.d/bluecherry-xenial.list https://dl.bluecherrydvr.com/sources.list.d/bluecherry-xenial-unstable.list
apt -y update
apt -y install bluecherry
systemctl restart bluecherry
}

# Ubuntu 20.04
focal_install()
{
Expand Down Expand Up @@ -123,36 +101,6 @@ centos_7_install()
systemctl restart bluecherry
}

# Debian 8
jessie_install()
{
apt -y install gpg wget
wget -q https://dl.bluecherrydvr.com/key/bluecherry.asc -O- | apt-key add -
wget --output-document=/etc/apt/sources.list.d/bluecherry-jessie.list https:/unstablel.bluecherrydvr.com/sources.list.d/bluecherry-jessie-unstable.list
apt-get -y update
apt-get -y install bluecherry
}

# Debian 7
wheezy_install()
{
apt -y install gpg wget
wget -q https://dl.bluecherrydvr.com/key/bluecherry.asc -O- | apt-key add -
wget --output-document=/etc/apt/sources.list.d/bluecherry-wheezy.list https://unstable.bluecherrydvr.com/sources.list.d/bluecherry-wheezy-unstable.list
apt-get -y update
apt-get -y install bluecherry
}

# Debian 9
stretch_install()
{
apt -y install gpg wget
wget -q https://dl.bluecherrydvr.com/key/bluecherry.asc -O- | apt-key add -
wget --output-document=/etc/apt/sources.list.d/bluecherry-stretch.list https://unstable.bluecherrydvr.com/sources.list.d/bluecherry-stretch-unstable.list
apt-get -y update
apt-get -y install bluecherry
}

# Debian 10
buster_install()
{
Expand Down

0 comments on commit 344b301

Please sign in to comment.