Skip to content

Instantly share code, notes, and snippets.

View DSMan97's full-sized avatar
💻
Coding

DSMan97 DSMan97

💻
Coding
View GitHub Profile
@markwhat1
markwhat1 / parameter-list.md
Last active February 4, 2024 20:46
Tautulli custom notifcation messages

Notification Parameters

  • If the value for a selected parameter cannot be provided, it will display as blank.
Global Definition
{tautulli_version} The current version of Tautulli.
{tautulli_remote} The current git remote of Tautulli.
{tautulli_branch} The current git branch of Tautulli.
{tautulli_commit} The current git commit hash of Tautulli.
{server_name} The name of your Plex Server.
@ansulev
ansulev / convert-crt-to-jks.sh
Created August 15, 2018 10:22
Convert .CRT y .KEY Certificates to JKS Keystore
# Convert it into pkcs12 format
openssl pkcs12 -export -out jenkins.p12 -inkey certificate.key -in certificate.crt -name "jenkins-cert"
# Create keystore if not exist
https://www.sslshopper.com/article-most-common-java-keytool-keystore-commands.html
# Import
keytool -importkeystore -srckeystore jenkins.p12 -srcstoretype pkcs12 -destkeystore keystore.jks