From b5e40c7f9b98632713f587fb19a2a057b92aa231 Mon Sep 17 00:00:00 2001 From: Daniel Markstedt Date: Sat, 11 Nov 2023 23:10:37 +0900 Subject: [PATCH] easyinstall: Add ca-certificates to list of packages to install with apt (#1341) * Add ca-certificates to list of packages to install with apt * Remove dhcpcd from packages to install --- easyinstall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easyinstall.sh b/easyinstall.sh index e12f2a06..21b1d5a7 100755 --- a/easyinstall.sh +++ b/easyinstall.sh @@ -76,7 +76,7 @@ SECRET_FILE="$HOME/.config/piscsi/secret" FILE_SHARE_PATH="$HOME/shared_files" FILE_SHARE_NAME="Pi File Server" -APT_PACKAGES_COMMON="build-essential git protobuf-compiler bridge-utils dhcpcd" +APT_PACKAGES_COMMON="build-essential git protobuf-compiler bridge-utils ca-certificates" APT_PACKAGES_BACKEND="libspdlog-dev libpcap-dev libprotobuf-dev protobuf-compiler libgmock-dev clang" APT_PACKAGES_PYTHON="python3 python3-dev python3-pip python3-venv python3-setuptools python3-wheel libev-dev libevdev2" APT_PACKAGES_WEB="nginx-light genisoimage man2html hfsutils dosfstools kpartx unzip unar disktype gettext"