- Using FreeBSD
- Mountain Lion
- VMware Fusion 5
- Your VMware is installed at '/Applications/VMware Fusion.app'
- Command Line tools are at '/Applications/VMware Fusion.app/Contents/Library'
- especially vmrun
| ######################## | |
| # To modify openldap ACL | |
| ######################## | |
| # delete the existing ACL | |
| # delete-acl.ldif | |
| dn: olcDatabase={1}hdb,cn=config | |
| changetype: modify | |
| delete: olcAccess |
| #!/bin/bash | |
| # | |
| # add_user.sh: Add user to LDAP | |
| # Author: Nick Sabine | |
| # | |
| # Defaults | |
| LDAP_BASE="dc=ORG,dc=local" | |
| LDAP_ACCOUNTS_DN="ou=people,${LDAP_BASE}" | |
| LDAP_USER_GROUP="cn=user_group,ou=groups,${LDAP_BASE}" |