Skip to content

Instantly share code, notes, and snippets.

View illenseer's full-sized avatar

Nils Pascal Illenseer illenseer

View GitHub Profile
@illenseer
illenseer / un.h
Created October 2, 2015 15:33
/System/Library/Frameworks/Kernel.framework/Versions/A/Headers/sys/un.h
/*
* Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
*
* @APPLE_OSREFERENCE_LICENSE_HEADER_START@
*
* This file contains Original Code and/or Modifications of Original Code
* as defined in and that are subject to the Apple Public Source License
* Version 2.0 (the 'License'). You may not use this file except in
* compliance with the License. The rights granted to you under the License
* may not be used to create, or enable the creation or redistribution of,

Keybase proof

I hereby claim:

  • I am illenseer on github.
  • I am illenseer (https://keybase.io/illenseer) on keybase.
  • I have a public key whose fingerprint is E07A 091E EFFC 1A3A E934 9905 E53C 9AE0 34E0 007A

To claim this, I am signing this object:

@illenseer
illenseer / site.yml
Created August 30, 2013 14:21
Playbook to get all prerequest for ansible installed on FreeBSD.
---
- hosts: freebsd
gather_facts: false
user: root
tasks:
- name: install pkgng
raw: "pkg_info | grep -v 'pkg-' > /dev/null ; if $? then pkg_add -r pkg; pkg2ng; echo 'WITH_PKGNG=yes' >> /etc/make.conf; echo 'packagesite: <your_pkg_mirror>' >> /usr/local/etc/pkg.conf; pkg update; endif"
- name: install python27
raw: pkg install -y python27
- name: add ansible ssh-key