From 40b01bcfc341e097435891b68817a41953be8577 Mon Sep 17 00:00:00 2001 From: Chris Hofstaedtler Date: Fri, 2 Oct 2020 13:07:26 +0200 Subject: [PATCH] auth: update bionic packages in README Especially for gpgsql, we do not need the full postgresql-server-dev package. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7fedb7a197..7db2fd2c4a 100644 --- a/README.md +++ b/README.md @@ -60,13 +60,13 @@ apt install autoconf automake ragel bison flex For Ubuntu 18.04 (Bionic Beaver), the following packages should be installed: ```sh -apt install libcurl4-openssl-dev luajit lua-yaml-dev libyaml-cpp-dev libtolua-dev lua5.3 autoconf automake ragel bison flex g++ libboost-all-dev libtool make pkg-config libssl-dev virtualenv lua-yaml-dev libyaml-cpp-dev libluajit-5.1-dev libcurl4 gawk +apt install libcurl4-openssl-dev luajit lua-yaml-dev libyaml-cpp-dev libtolua-dev lua5.3 autoconf automake ragel bison flex g++ libboost-all-dev libtool make pkg-config libssl-dev virtualenv lua-yaml-dev libyaml-cpp-dev libluajit-5.1-dev libcurl4 gawk libsqlite3-dev # For DNSSEC ed25519 (algorithm 15) support with --with-libsodium apt install libsodium-dev # If using the gmysql (Generic MySQL) backend apt install default-libmysqlclient-dev # If using the gpgsql (Generic PostgreSQL) backend -apt install postgresql-server-dev-10 +apt install libpq-dev # If using --enable-systemd (will create the service scripts so it can be managed with systemctl/service) apt install libsystemd0 libsystemd-dev # If using the geoip backend -- 2.47.2