auto-manager #1

Merged
wmantly merged 9 commits from auto-manager into master 2021-03-23 20:34:26 +00:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit fd83bc657c - Show all commits

View File

@ -29,7 +29,7 @@ objectclass: top
sn: service sn: service
uid: ldapclient uid: ldapclient
uidnumber: 1499 uidnumber: 1499
userpassword: {MD5}{{ldpad_client_password}} userpassword: {MD5}{{ldpad_client_password_md5}}
# Entry 1: cn={{user_uid}},ou=Groups,{{ldap_base}} # Entry 1: cn={{user_uid}},ou=Groups,{{ldap_base}}
@ -57,7 +57,7 @@ sudohost: ALL
sudouser: {{user_last_name}} sudouser: {{user_last_name}}
uid: {{user_uid}} uid: {{user_uid}}
uidnumber: 1500 uidnumber: 1500
userpassword: {MD5}{{user_password}} userpassword: {MD5}{{user_password_md5}}
# Entry 1: cn=app_sso_admin,ou=Groups,{{ldap_base}} # Entry 1: cn=app_sso_admin,ou=Groups,{{ldap_base}}

View File

@ -7,7 +7,7 @@ source lib/mo
if [ ! -f ./ldap.vars ]; then if [ ! -f ./ldap.vars ]; then
echo "ldap.vars file not found!" echo "ldap.vars file not found!"
echo "Please copy ldap.vars_template to ldap.vars and edit it." echo "Please copy ldap.vars.template to ldap.vars and edit it."
exit 1 exit 1
fi fi
@ -40,7 +40,7 @@ echo '' > /etc/ldap/ldap.conf
echo "BASE $ldap_base" >> /etc/ldap/ldap.conf echo "BASE $ldap_base" >> /etc/ldap/ldap.conf
echo "URI ldap://localhost" >> /etc/ldap/ldap.conf echo "URI ldap://localhost" >> /etc/ldap/ldap.conf
temp_populate_ldif=$(mkdir) temp_populate_ldif=$(mktemp)
populate_ldif_template="$(cat files/populate.ldif.template)" populate_ldif_template="$(cat files/populate.ldif.template)"
echo "$populate_ldif_template" | mo > "$temp_populate_ldif" echo "$populate_ldif_template" | mo > "$temp_populate_ldif"