prole/infrastructure/roles/samba_ad_dc/templates/smb.conf.j2
chrisfu 6e2d3e9011 refactor: modernize installer and monitoring setup
- Monitoring: Migrated from manual Grafana/Prometheus manifests to kube-prometheus-stack based setup in etc/init_monitoring.sh. Removed old manifest files from deploy/ and k8s/.
- Installer Core: Refactored installer with new modules for actions, environment handling, and UI screens. Enhanced Milestone logic to support advanced configuration (ArgoCD, Registry namespaces, Kerberos flags, etc.).
- Service & Init Scripts: Updated multiple initialization scripts (init_*.sh) for better integration with OpenBao, Kerberos, and the new monitoring stack. Added new scripts for Nginx Ingress, Ollama parsing, and K3D route fixes.
- Infrastructure: Enhanced Samba AD DC Ansible role with realm derivation, provisioning guidance, and group management. Updated K3s role tasks.
- Configuration: Refined default settings in conf/ to align with the new deployment architecture.
- App & Tools: Updated prole-app Swift code and prole.sh for improved environment variable handling and installation flow.
2026-02-19 21:07:39 -08:00

22 lines
768 B
Django/Jinja

# Global parameters
[global]
dns forwarder = {{ samba_ad_dc_dns_forwarders | join(' ') }}
netbios name = {{ samba_ad_dc_netbios_name }}
realm = {{ samba_ad_dc_realm }}
server string = {{ samba_ad_dc_server_string }}
server role = {{ samba_ad_dc_server_role }}
server services = {{ samba_ad_dc_server_services }}
workgroup = {{ samba_ad_dc_workgroup }}
idmap_ldb:use rfc2307 = {{ "yes" if samba_ad_dc_rfc2307 else "no" }}
template homedir = {{ samba_ad_dc_template_homedir }}
template shell = {{ samba_ad_dc_template_shell }}
[sysvol]
path = {{ samba_ad_dc_sysvol_path }}
read only = No
[netlogon]
path = {{ samba_ad_dc_netlogon_path }}
read only = No