diff options
| -rw-r--r-- | docs/index.md | 10 | ||||
| -rw-r--r-- | docs/ldap.md | 10 |
2 files changed, 19 insertions, 1 deletions
diff --git a/docs/index.md b/docs/index.md index 81a3b1d..9ba744b 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,3 +1,13 @@ # Welcome! TODO a sentiment here to ground this experience and set the tone would be great. + +## Getting started + +You may find this to be a convenient way to work: + +``` +$ nixos-rebuild build --flake ~/ops/config --override-input smalltech . +``` + +This references a local checkout of the config repo that .... TODO diff --git a/docs/ldap.md b/docs/ldap.md index ed305fc..12c6d01 100644 --- a/docs/ldap.md +++ b/docs/ldap.md @@ -1,4 +1,4 @@ -Works: +## Works ldapsearch -x -H ldap://127.0.0.1 -D "cn=admin,dc=internetsafetylabs,dc=org" -w secret -b "dc=internetsafetylabs,dc=org" @@ -20,3 +20,11 @@ ldapmodify -x -D "cn=admin,dc=internetsafetylabs,dc=org" -w secret -f modtest.l modifying entry "ou=Groups,dc=internetsafetylabs,dc=org" modifying rdn of entry "ou=Groups,dc=internetsafetylabs,dc=org" + + +## Bootstrapping your user by hand + +ldappasswd -W -D uid=root,dc=internetsafetylabs,dc=org -S uid=irenes,ou=staff,ou=people,dc=internetsafetylabs,dc=org + +replace with your own user's distinguished name + |