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 | |
export LC_CTYPE=en_US.UTF-8 | |
export LC_ALL=en_US.UTF-8 | |
# Must run on Proxmox VE 7 server | |
# Not sure how to handle a cluster - either run on each node or copy template after creating on one? | |
# e.g. $ ssh [email protected] < proxmox-create-cloud-template.sh | |
SRC_IMG="https://cloud-images.ubuntu.com/focal/current/focal-server-cloudimg-amd64-disk-kvm.img" |
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 -e | |
# Simple wrapper script to unseal a vault server with encrypted seals | |
read -rp 'Decrypt method [keybase|gpg]: ' method | |
case "${method}" in | |
gpg) | |
cmd="gpg -dq" | |
;; |
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
test |
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
### Keybase proof | |
I hereby claim: | |
* I am rgevaert on github. | |
* I am rgevaert (https://keybase.io/rgevaert) on keybase. | |
* I have a public key ASDQfxSECsTK-sryvE31KHLAyl2vthXY7afdnZBdqBN9OQo | |
To claim this, I am signing this object: |
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
VERSION v2.6.2 | |
MYSELF 127.0.0.1 HOSTNAME | |
J_HOSTNAME SYSTEM | |
PRESENCE SHOW | |
FOOTER SHOW | |
FILTER_URL http://helpdesk.ugent.be/email/ | |
POLICY_URL http://helpdesk.ugent.be/email/faq.php | |
DAEMON_FILTER_DISABLE | |
USER jchkmail | |
GROUP jchkmail |
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
# -*- encoding : utf-8 -*- | |
# Checks the configuration of the apache.conf logstash file | |
require 'spec_helper' | |
require 'logstash/filters/grok' | |
describe "apache common log format" do | |
config <<-CONFIG | |
filter { |
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 | |
version=$1 | |
maintainer="Rudy Gevaert <[email protected]>" | |
description="Kibana is webinterface for Elasticsearch. To recreate this package use https://gist.github.com/rgevaert/5ea816c4ad0ef2979f32" | |
if [ "$version" == "" ] | |
then | |
echo Usage: $0 version-number | |
exit |
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
# Put this in /etc/systemd/system/logstash.service.d/ | |
# And then run systemctl daemon-reload | |
# Will make logstash start if it wasn't cleanly stopped. | |
# see https://github.com/elastic/logstash/issues/3606, https://github.com/systemd/systemd/issues/1211 | |
[Service] | |
RemainAfterExit=false |
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
grok { | |
tags => "postfix/smtpd" | |
pattern => [ "%{POSTFIXSMTPDCONNECTS}", | |
"%{POSTFIXSMTPDACTIONS}", | |
"%{POSTFIXSMTPDTIMEOUTS}", | |
"%{POSTFIXSMTPDLOGIN}", | |
"." ] | |
named_captures_only => true | |
} |
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
diff --git a/ext/debian/control b/ext/debian/control | |
index 7fb71de..71c07c9 100644 | |
--- a/ext/debian/control | |
+++ b/ext/debian/control | |
@@ -8,14 +8,14 @@ Homepage: http://marionette-collective.org/ | |
Package: mcollective | |
Architecture: all | |
-Depends: ruby (>= 1.8.1), mcollective-common (= ${source:Version}) | |
+Depends: ruby (>= 1.9.1), mcollective-common (= ${source:Version}) |
NewerOlder