Skip to content

Instantly share code, notes, and snippets.

View hyperized's full-sized avatar
🥑
Eating a sandwich

hyperized

🥑
Eating a sandwich
View GitHub Profile
---
version: '3.7'
services:
redis:
image: redis
ports:
- 6379:6379
Ik schrijf u in uw hoedanigheid als gegevensbeschermingsfunctionaris voor uw bedrijf.
Door een situatie waarin uw bedrijf mij zonder expliciete toestemming heeft aangemeld voor solliciaties bij bedrijven die geen relevantie houden tot mijn profiel heb ik zorgen over de verwerking van data binnen uw bedrijf.
Ik zou graag willen dat u van meet af aan weet dat ik binnen een maand antwoord verwacht op mijn verzoek, zoals vereist krachtens artikel 12, bij gebreke waarvan ik mijn verzoek zal doorzenden met een klachtbrief aan de bevoegde autoriteiten.
Gelieve het volgende te adviseren:
1. Bevestig mij of mijn persoonlijke gegevens worden verwerkt. Als dit het geval is, geef me dan de categorieën persoonlijke gegevens die u over mij hebt in uw bestanden en databases.

Verify matching signatures

Verify the CSR:

openssl req -noout -modulus -in star_mydomain_tld.csr | openssl md5

Verify the KEY:

openssl rsa -noout -modulus -in star_mydomain_tld.key | openssl md5

Verify the CRT:

How to apt-mirror for Cisofy Lynis

To create our own APT mirror server we've done the following:

$ apt-get install apt-mirror nginx

Put the following in /etc/apt/mirror.list: gist

Put the following in /etc/nginx/sites-enabled/default: gist

Keybase proof

I hereby claim:

  • I am hyperized on github.
  • I am hyperized (https://keybase.io/hyperized) on keybase.
  • I have a public key ASCc1brEFHgBrQHBStfA2wk3fTjL4rQWmg7T-GVNDeJ1bQo

To claim this, I am signing this object:

time_namelookup: %{time_namelookup}\n
time_connect: %{time_connect}\n
time_appconnect: %{time_appconnect}\n
time_pretransfer: %{time_pretransfer}\n
time_redirect: %{time_redirect}\n
time_starttransfer: %{time_starttransfer}\n
----------\n
time_total: %{time_total}\n
[ssh_connection]
# Magic undocumented switch
# - http://grokbase.com/t/gg/ansible-project/161ba72srq/new-ssh-retry-in-ansible-2-0#201601113wgqup2if6iz4b4mjdnnwpfcve
# - https://github.com/ansible/ansible/blob/devel/lib/ansible/constants.py
retries=10
---
- hosts: localhost
vars:
hour_block_size: 4
tasks:
# To find the nearest hour within a X (hour_block_size) hour span (nearest neighbor), sort floor
- set_fact:
block_of_hours: "{{ ( ( ansible_date_time.hour | int ) // hour_block_size ) | int }}"
- debug: msg="{{ [ ( block_of_hours | int ) ] | map('extract', range(0, 24, hour_block_size)) | list }}"
- name: assemble configs
assemble:
src: "{{ haproxy_config_path }}/conf.d/"
dest: "{{ haproxy_config_path }}/{{ haproxy_config_file }}"
notify: reload haproxy
[09:50] myuser@machine:~/$ cat test.yml
---
- hosts: localhost
gather_facts: true
become: true
tasks:
- set_fact:
my_user: myuser
- debug: msg="{{ lookup('pipe', 'id -u ' + my_user) }}"
[09:50] myuser@machine:~/$ ansible-playbook test.yml