Skip to content

Instantly share code, notes, and snippets.

@trainman419
trainman419 / playbook.yml
Created September 1, 2017 02:59
Ansible apt marking bug.
---
- hosts: localhost
tasks:
- block:
- name: "install_parent"
apt:
name: "{{ item }}"
install_recommends: no
state: present
with_items:
#!/usr/bin/env python
import sys
import collections
import random
words_by_first = collections.defaultdict(list)
with open('/usr/share/dict/words') as words: