mckenziec
mckenziec
Ah ok, sorry. Issue #3 noted how to get /dev/video0 running. Turns out that's what I was missing. I don't know why avconv would not notice the interface was missing...
Has anyone made progress on this topic? I'm also in the midst of trying to incorporate an ActiveDirectory lite schema into osixia and having no end of troubles.
Thanks. I was writing a reply about the dependency hell I couldn't resolve, but I actually managed to convert the schema files included in https://github.com/dkoudela/active-directory-to-openldap to ldif. Here's the config...
Also as quanah suggested, I grabbed the msusers.ldif and tried messing around it. Simply adding it as a custom ldif didn't work. There are complaints about a duplicate attribute. BTW,...
The admin account doesn't have access to cn=config. I can't view the schema of any running osixia container. If I embed msuser.lidf as /container/service/slapd/assets/config/bootstrap/ldif/06-msuser.ldif in a Docker image that's FROM...
Hi quanah. That's the ldif I'm using. ``` curl https://git.openldap.org/openldap/openldap/-/raw/master/servers/slapd/schema/msuser.ldif -o ./ldif/msuser.ldif ``` Here's my Dockerfile: ``` FROM osixia/openldap COPY ${PWD}/ldif/msuser.ldif /container/service/slapd/assets/config/bootstrap/ldif/06-msuser.ldif ``` I build it tagged as "test/test-ldap", and...
I'm not familiar enough with the ldif ACL syntax to say if the included one would impact the msuser.ldif: ``` dn: olcDatabase={1}{{ LDAP_BACKEND }},cn=config changetype: modify delete: olcAccess - add:...
Thanks quanah. I won't pretend to understand openldap enough to diagnose this. That is a typo in my post, not in how I downloaded the file. Sorry about that.
I don't know where the (maybe utf-8) characters are coming from. It's literally the 1st non-comment entry in the msuser.ldif. I grepped through all the olcAttributeTypes and they aren't complicated....
https://github.com/cloudflare/cfssl/blob/275fb308ac705bf5631d23b941f7b56dc436e39d/doc/cmd/cfssl.txt I tried not_after as well in the "ca" signing profile: ``` { "signing": { "default": { "expiry": "143800h" }, "profiles": { "ca": { "not_after":"2034-09-10T17:03:00Z", "usages": [ "cert sign", "crl...