I hereby claim:
- I am ekollof on github.
- I am andrath (https://keybase.io/andrath) on keybase.
- I have a public key whose fingerprint is D9B3 6EC6 350C DE3A FC6E 55DF E4BC 9508 EC4A 4094
To claim this, I am signing this object:
root@hh-management01:~ # salt-cloud --profile hh-db hh-db01 | |
[INFO ] salt-cloud starting | |
[INFO ] Creating Cloud VM hh-db01 | |
[INFO ] found private IPv4 interface for "10.129.16.64" | |
[INFO ] found public IPv4 interface for "95.85.10.213" | |
[INFO ] found public IPv6 interface for "2A03:B0C0:0000:1010:0000:0000:035F:D001" | |
[INFO ] Rendering deploy script: /usr/local/etc/salt/cloud.deploy.d/bootstrap-salt.sh | |
Warning: Permanently added '95.85.10.213' (ECDSA) to the list of known hosts. | |
Fri Jul 1 09:14:19 UTC 2016 | |
Warning: Permanently added '95.85.10.213' (ECDSA) to the list of known hosts. |
- hosts: all | |
gather_facts: false | |
tasks: | |
- raw: which {{item}} | |
register: mypython | |
ignore_errors: True | |
with_items: | |
- python | |
- python2 | |
- python2.7 |
I hereby claim:
To claim this, I am signing this object:
diff --git a/src/pam_linotp.c b/src/pam_linotp.c | |
index 48e77c2..23f6cb9 100644 | |
--- a/src/pam_linotp.c | |
+++ b/src/pam_linotp.c | |
@@ -120,6 +120,7 @@ int debugflag = 0; | |
/* | |
config options which could be set in the pam configuration: | |
url=http://localhost:5001/validate/simplecheck | |
+ proxy=http://proxy.location:3128/ | |
nosslhostnameverify |
#!/usr/bin/env python3.7 | |
import sys | |
from mastodon import Mastodon | |
from pprint import pprint | |
from urllib.parse import urlparse | |
def main(): |
# Maintainer: Andreas Radke <andyrtr@archlinux.org> | |
# Maintainer: Jan de Groot <jgc@archlinux.org> | |
pkgname=libxft | |
pkgver=2.3.3 | |
pkgrel=1 | |
pkgdesc="FreeType-based font drawing library for X" | |
arch=('x86_64') | |
license=('custom') | |
url="https://xorg.freedesktop.org/" |
pki mail-ng.hackerheaven.org cert "/etc/ssl/mail-ng.hackerheaven.org.fullchain.pem" | |
pki mail-ng.hackerheaven.org key "/etc/ssl/private/mail-ng.hackerheaven.org.key" | |
filter check_dyndns phase connect match rdns regex { '.*\.dyn\..*', '.*\.dsl\..*' } \ | |
disconnect "550 no residential connections" | |
# filter check_rdns phase connect match !rdns \ | |
# disconnect "550 no rDNS is so 80s" | |
#filter check_fcrdns phase connect match !fcrdns \ |
- name: get SSHFP records | |
shell: "ssh-keygen -r {{ ansible_nodename }} | awk '{print $4, $5, $6}'" | |
register: sshfp_entries | |
- name: Register SSHFP with CloudFlare | |
cloudflare_dns: | |
zone: "hackerheaven.org" | |
record: "{{ ansible_hostname }}" | |
type: SSHFP | |
account_email: "{{ cloudflare_email }}" |
#!/usr/bin/env python3 | |
import sys | |
import os | |
import socket | |
import hashlib | |
import subprocess | |
CONFIG=os.path.expanduser("~/.config/planmon/config") | |
CACHEDIR=os.path.expanduser("~/.cache/planmon") |