2024-10-23 18:58:06 +00:00
|
|
|
.PHONY: prerequisites dev-init dev-reinit
|
2024-10-19 04:16:17 +00:00
|
|
|
|
|
|
|
prerequisites:
|
|
|
|
@echo "=================== Installing Prerequisites ==================="
|
|
|
|
apt install debconf-utils slapd ldap-utils sudo gettext
|
|
|
|
git clone https://git.tronnet.net/tronnet/open-ldap-setup
|
|
|
|
cd open-ldap-setup/; bash gencert.sh < ../gencert.conf;
|
|
|
|
rm -rf open-ldap-setup/
|
|
|
|
|
|
|
|
dev-init: prerequisites dev-reinit
|
|
|
|
|
|
|
|
dev-reinit:
|
|
|
|
@echo "====================== Initializing Slapd ======================"
|
|
|
|
cat debconf-slapd.conf | debconf-set-selections
|
|
|
|
DEBIAN_FRONTEND=noninteractive dpkg-reconfigure slapd
|
|
|
|
git clone https://git.tronnet.net/tronnet/open-ldap-setup
|
|
|
|
cd open-ldap-setup/; bash setup.sh < ../setup.conf;
|
|
|
|
rm -rf open-ldap-setup/
|