aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorGravatar Jacob Hansen <jhansen@op5.com> 2021-04-30 12:33:52 +0200
committerGravatar Jacob Hansen <jhansen@op5.com> 2021-05-18 14:42:58 +0200
commitde9f85c916db4515bd81f2a000d7fb57f8e0f46a (patch)
tree54fce72b54773402876b8a7e9dddf8b3957e757d /.github
parent39c162e594ec962eb338332624d3ac7474227a2b (diff)
downloadmonitoring-plugins-de9f85c916db4515bd81f2a000d7fb57f8e0f46a.tar.gz
Use openssl generated cert
The SSL certificate generate using make-ssl-cert seems to not work well with a our plugins. Causing a "CN could not be found" error to be shown. Using an OpenSSL generated certifiticate, seems to work better. Signed-off-by: Jacob Hansen <jhansen@op5.com>
Diffstat (limited to '.github')
-rwxr-xr-x.github/prepare_debian.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/prepare_debian.sh b/.github/prepare_debian.sh
index 3693accf..a74f3464 100755
--- a/.github/prepare_debian.sh
+++ b/.github/prepare_debian.sh
@@ -41,8 +41,12 @@ cat /etc/hosts
# apache
a2enmod ssl
a2ensite default-ssl
-make-ssl-cert generate-default-snakeoil --force-overwrite
-service apache2 start
+# replace snakeoil certs with openssl generated ones as the make-ssl-cert ones
+# seems to cause problems with our plugins
+rm /etc/ssl/certs/ssl-cert-snakeoil.pem
+rm /etc/ssl/private/ssl-cert-snakeoil.key
+openssl req -nodes -newkey rsa:2048 -x509 -sha256 -days 365 -nodes -keyout /etc/ssl/private/ssl-cert-snakeoil.key -out /etc/ssl/certs/ssl-cert-snakeoil.pem -subj "/C=GB/ST=London/L=London/O=Global Security/OU=IT Department/CN=$(hostname)"
+service apache2 restart
# squid
cp tools/squid.conf /etc/squid/squid.conf