I hereby claim:
- I am wyattwalter on github.
- I am wyattwalter (https://keybase.io/wyattwalter) on keybase.
- I have a public key ASBRzX4SNtJio4GqZjvYLpcNWSMjIO5yU_1YbPokSGhliQo
To claim this, I am signing this object:
| job "docs" { | |
| datacenters = ["home"] | |
| group "example" { | |
| count = "1" | |
| task "server" { | |
| driver = "docker" | |
| config { |
I hereby claim:
To claim this, I am signing this object:
| - name: delete anonymous MySQL server user for {{ ansible_nodename }} | |
| mysql_user: login_user=root | |
| login_password='{{ mysql_root }}' | |
| check_implicit_admin=yes | |
| user="" | |
| host={{ item }} | |
| state="absent" | |
| with_items: | |
| - "" | |
| - "{{ ansible_nodename }}" |
| #! /usr/bin/env python | |
| # borrowed and adapted from https://gist.github.com/jaimegago/11229750 | |
| import datetime | |
| import json | |
| import logging | |
| import logging.handlers | |
| import optparse | |
| import os |
| test |
| @receiver(post_save, sender=Guide, dispatch_uid='guide_saved') | |
| def import_photos(sender, instance): | |
| ImportPhotosTask.apply_async([instance], countdown=2) |