Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix installer on debian #651

Merged
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions debian/control.in
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Depends: ${shlibs:Depends}, ssl-cert, ucf, curl, sysstat,
v4l-utils,
vainfo,
i965-va-driver,
cron,
# python3-pip,
#focal php-sqlite3, php-gd, php-curl, php-mysql
#jammy php-sqlite3, php-gd, php-curl, php-mysql
Expand Down
9 changes: 3 additions & 6 deletions installer/v3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,8 @@ buster_install()
apt-get -y install gnupg sudo wget
apt-get -y install python3-pip
pip3 install --user --upgrade pip
wget -q https://repo.mysql.com/RPM-GPG-KEY-mysql-2022 -O- | apt-key add -
wget -q https://repo.mysql.com/RPM-GPG-KEY-mysql-2023 -O- | apt-key add -
wget -q https://dl.bluecherrydvr.com/key/bluecherry.asc -O- | apt-key add -
# wget -q http://repo.mysql.com/RPM-GPG-KEY-mysql -O- | apt-key add -
wget --no-check-certificate --output-document=/etc/apt/sources.list.d/bluecherry-buster.list https://dl.bluecherrydvr.com/sources.list.d/bluecherry-buster-unstable.list
apt-get -y update
apt-get -y install mysql-server bluecherry
Expand All @@ -199,11 +198,9 @@ bullseye_install()
{
apt-get -y update
apt-get -y install gnupg sudo sudo python3-distutils wget
# wget -q http://repo.mysql.com/RPM-GPG-KEY-mysql -O- | apt-key add -
wget -q https://repo.mysql.com/RPM-GPG-KEY-mysql-2022 -O- | apt-key add -
wget -q https://repo.mysql.com/RPM-GPG-KEY-mysql-2023 -O- | apt-key add -
wget -q https://dl.bluecherrydvr.com/key/bluecherry.asc -O- | apt-key add -
# wget -q http://repo.mysql.com/RPM-GPG-KEY-mysql -O- | apt-key add -
wget --no-check-certificate --output-document=/etc/apt/sources.list.d/bluecherry-buster.list https://dl.bluecherrydvr.com/sources.list.d/bluecherry-bullseye-unstable.list
wget --no-check-certificate --output-document=/etc/apt/sources.list.d/bluecherry-bullseye.list https://dl.bluecherrydvr.com/sources.list.d/bluecherry-bullseye-unstable.list
apt-get -y update
apt-get -y install mariadb-server bluecherry
# apt-get install mariadb-server
Expand Down
Loading