This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget https://ftp.postgresql.org/pub/source/v9.4.6/postgresql-9.4.7.tar.bz2 | |
apt-get install libreadline-dev | |
export CFLAGS=-I/opt/sensu/embedded/include | |
export LDFAGS=-L/opt/sensu/embedded/lib | |
./configure --prefix /opt/sensu/embedded --with-openssl | |
make | |
make install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# update crls for nginx | |
WGET="wget --quiet" | |
pushd /etc/nginx/sk/crl | |
$WGET https://sk.ee/crls/juur/crl.crl | |
$WGET https://sk.ee/crls/eeccrca/eeccrca.crl | |
$WGET https://sk.ee/crls/esteid/esteid2007.crl | |
$WGET https://sk.ee/repository/crls/esteid2011.crl | |
openssl crl -in esteid2007.crl -out esteid2007.crl -inform DER | |
openssl crl -in crl.crl -out crl.crl -inform DER |
NewerOlder