From cbcd022f302adc39ecb89fba6faf72e68184c0e0 Mon Sep 17 00:00:00 2001 From: Cullum Smith Date: Fri, 2 Aug 2024 19:10:39 -0400 Subject: halfway working idm server and laptop hostclasses --- scripts/common/10-root-user | 7 ------- scripts/common/10-vars | 31 +++++++++++++++++++++++++++++++ scripts/common/20-dns | 9 --------- scripts/common/20-root-user | 7 +++++++ scripts/common/30-dns | 9 +++++++++ 5 files changed, 47 insertions(+), 16 deletions(-) delete mode 100644 scripts/common/10-root-user create mode 100644 scripts/common/10-vars delete mode 100644 scripts/common/20-dns create mode 100644 scripts/common/20-root-user create mode 100644 scripts/common/30-dns (limited to 'scripts/common') diff --git a/scripts/common/10-root-user b/scripts/common/10-root-user deleted file mode 100644 index 9a9f5e6..0000000 --- a/scripts/common/10-root-user +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -# Add root SSH pubkeys. -set_authorized_keys root "$root_authorized_keys" - -# Set root password. -set_password root "$root_password" diff --git a/scripts/common/10-vars b/scripts/common/10-vars new file mode 100644 index 0000000..3cfbd8f --- /dev/null +++ b/scripts/common/10-vars @@ -0,0 +1,31 @@ +#!/bin/sh + +if [ "${idm_bootstrap:-}" = true ]; then + resolvers=$bootstrap_resolvers + pkg_host=$pkg_host_ip +else + : ${resolvers:="$(echo "$idm_server_list" | awk '{print $3}')"} +fi + +idm_hostnames=$(echo "$idm_server_list" | awk '{print $1}') + +realm=$(echo "$domain" | tr '[:lower:]' '[:upper:]') + +basedn=$(echo "$domain" | sed -e 's/^/dc=/' -e 's/\./,dc=/g') +ldap_uri=$(printf "ldap://%s.${domain}/ " $idm_hostnames) +ldaps_uri=$(printf "ldaps://%s.${domain}/ " $idm_hostnames) +ldap_hosts=$(printf "%s.${domain} " $idm_hostnames) +accounts_basedn="ou=accounts,${basedn}" +people_basedn="ou=people,${accounts_basedn}" +robots_basedn="ou=robots,${accounts_basedn}" +hosts_basedn="ou=hosts,${accounts_basedn}" +services_basedn="ou=services,${accounts_basedn}" +groups_basedn="ou=groups,${accounts_basedn}" +private_groups_basedn="ou=userprivate,${groups_basedn}" +roles_basedn="ou=roles,${groups_basedn}" +automount_basedn="ou=automount,${basedn}" +sudo_basedn="ou=sudo,${basedn}" +dns_basedn="ou=dns,${basedn}" +kdc_basedn="ou=dns,${basedn}" +mail_basedn="ou=mail,${basedn}" +mail_domains_basedn="ou=domains,${mail_basedn}" diff --git a/scripts/common/20-dns b/scripts/common/20-dns deleted file mode 100644 index e2d5ad6..0000000 --- a/scripts/common/20-dns +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -# For IDM servers, the resolver is localhost. In that case, we delay copying -# this file until the IDM stack is fully up and running. -if [ "$BOXCONF_HOSTCLASS" = idm_server ]; then - return -fi - -install_template -m 0644 /etc/resolv.conf diff --git a/scripts/common/20-root-user b/scripts/common/20-root-user new file mode 100644 index 0000000..9a9f5e6 --- /dev/null +++ b/scripts/common/20-root-user @@ -0,0 +1,7 @@ +#!/bin/sh + +# Add root SSH pubkeys. +set_authorized_keys root "$root_authorized_keys" + +# Set root password. +set_password root "$root_password" diff --git a/scripts/common/30-dns b/scripts/common/30-dns new file mode 100644 index 0000000..e2d5ad6 --- /dev/null +++ b/scripts/common/30-dns @@ -0,0 +1,9 @@ +#!/bin/sh + +# For IDM servers, the resolver is localhost. In that case, we delay copying +# this file until the IDM stack is fully up and running. +if [ "$BOXCONF_HOSTCLASS" = idm_server ]; then + return +fi + +install_template -m 0644 /etc/resolv.conf -- cgit v1.2.3