Skip to content

Instantly share code, notes, and snippets.

View canit00's full-sized avatar
🖥️
01101100 01100101 01100001 01110010 01101110 01101001 01101110 01100111

canit00

🖥️
01101100 01100101 01100001 01110010 01101110 01101001 01101110 01100111
  • U.S.
View GitHub Profile
@canit00
canit00 / openssl_commands.md
Created September 29, 2018 20:48 — forked from p3t3r67x0/openssl_commands.md
Some list of openssl commands for check and verify your keys

openssl

Install

Install the OpenSSL on Debian based systems

sudo apt-get install openssl
@canit00
canit00 / in.j2
Created September 27, 2018 21:22 — forked from jhriv/in.j2
Sample Ansible Playbook template+iteritems
The following should be:
SAMPLE:
one -> first
two -> second
three -> third
ACTUAL:
{% for k, v in d.iteritems() %}
{{ k }} -> {{ v }}
@canit00
canit00 / jinja-example-iteritems.py
Created September 22, 2018 18:15 — forked from wunzeco/jinja-example-iteritems.py
jinja-example-iteritems
#!/usr/bin/env/python
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from jinja2 import Environment
alphabets = {"a": "Apple", "b": "Butterfly", "c": "Car"}
title = "ABC tutorial"
@canit00
canit00 / ansible-summary.md
Created November 10, 2017 00:13 — forked from andreicristianpetcu/ansible-summary.md
This is an ANSIBLE Cheat Sheet from Jon Warbrick

An Ansible summary

Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)

Configuration file

intro_configuration.html

First one found from of

@canit00
canit00 / pedantically_commented_playbook.yml
Created November 9, 2017 20:13 — forked from marktheunissen/pedantically_commented_playbook.yml
Insanely complete Ansible playbook, showing off all the options
---
# ^^^ YAML documents must begin with the document separator "---"
#
#### Example docblock, I like to put a descriptive comment at the top of my
#### playbooks.
#
# Overview: Playbook to bootstrap a new host for configuration management.
# Applies to: production
# Description:
# Ensures that a host is configured for management with Ansible.