mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 18:29:21 +00:00 
			
		
		
		
	- Rename sys-svc-webserver -> sys-svc-webserver-core - Rename sys-stk-front-pure -> sys-svc-webserver-https - Update includes, run_once flags, and docs across: * sys-ctl-mtn-cert-renew * sys-front-inj-* * sys-stk-front-proxy * sys-svc-certs * sys-svc-cln-domains * web-opt-rdr-* * web-svc-* - Remove redundant webserver include in web-opt-rdr-www - Fix documentation links Ref: ChatGPT conversation https://chatgpt.com/share/68d6cea2-3570-800f-acb3-c3277317f17b
		
			
				
	
	
		
			23 lines
		
	
	
		
			582 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			582 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| - name: Include dependencies
 | |
|   include_role:
 | |
|     name: '{{ item }}'
 | |
|   loop:
 | |
|   - sys-svc-certbot
 | |
|   - sys-svc-webserver-core
 | |
|   - sys-ctl-alm-compose
 | |
| 
 | |
| - name: install certbot
 | |
|   community.general.pacman:
 | |
|     name:
 | |
|     - certbot-nginx
 | |
|     state: present
 | |
| 
 | |
| - include_role:
 | |
|     name: sys-service
 | |
|   vars:
 | |
|     system_service_copy_files:      false
 | |
|     system_service_on_calendar:     "{{ SYS_SCHEDULE_MAINTANANCE_LETSENCRYPT_RENEW }}"
 | |
|     persistent:                     true
 | |
|     system_service_timer_enabled:   true
 | |
|     system_service_tpl_on_failure:  "{{ SYS_SERVICE_ON_FAILURE_COMPOSE }}"
 |