Skip to content

Instantly share code, notes, and snippets.

@arafatm
Last active December 18, 2015 05:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save arafatm/07fd02d3429dc736d59a to your computer and use it in GitHub Desktop.
Save arafatm/07fd02d3429dc736d59a to your computer and use it in GitHub Desktop.
2013-06-07 LDAPtive

Arafat: Scrum/Agile Intro

https://gist.github.com/arafatm/5735646

James White: Current Websages Infrastructure Overview

James White: LDAP Intro

LDAP Syntax is a pain to type out, but if you define small "helper" shell scripts, it will speed things along.

I call this one "lsearch":

#!/bin/bash
search=$1
[ -z "${search}" ] && search="(objectclass=*)"
ldapsearch -LLLxH ${LDAP_SERVER} -b "${LDAP_BASEDN}" -D "${LDAP_BINDDN}" -w ${LDAP_PASSWORD} -s sub "${search}" |tr "\n" '^['| sed -e 's/^[ //g' | tr '^[' "\n"

Brandon Valentine: LDAPtive Vision

LDAPtive Vision Presentation

2307bis

  • Equity award for in-person hackday attendance
  • Equity multiplier for LDAPtive work
  • Open source policy
  • Equity policy for pairing
  • Equity policy for chores (merging pull requests)

James Fryman: Puppet Setup Model

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment