21 lines
331 B
Bash
21 lines
331 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
apt install -y build-essential pkg-config m4 libtool automake autoconf libgcrypt20-dev libtool libpam0g-dev libpq-dev
|
|
|
|
git clone https://github.com/pam-pgsql/pam-pgsql
|
|
cd pam-pgsql
|
|
|
|
autoreconf --install
|
|
chmod +x ./configure
|
|
./configure
|
|
make
|
|
|
|
# sleep .5
|
|
# printf "\n\n\n"
|
|
# sleep .5
|
|
#
|
|
# make install
|
|
#
|
|
# exit 1
|