Mike.lifeguard:
How would someone check the default license a user set if they needed to?
River Tarnell:
willow% ldapsearch -h ldap -b ou=people,o=unix,o=toolserver '(uid=rriver)'
tsDefaultLicense
version: 1 dn: uid=rriver,ou=People,o=unix,o=toolserver tsDefaultLicense: zlib
Could this be made into a command to make it easier, such as the following:
#!/bin/bash echo `ldapsearch -h ldap -b ou=people,o=unix,o=toolserver '(uid=$1)' tsDefaultLicense` | grep tsDefaultLicense
Just a thought
stwalkerster