mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-11-04 04:08:15 +00:00 
			
		
		
		
	Compare commits
	
		
			2 Commits
		
	
	
		
			57d5269b07
			...
			cb483f60d1
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| cb483f60d1 | |||
| 2be73502ca | 
@@ -1,3 +1,3 @@
 | 
				
			|||||||
ssl_certificate         {{ [ LETSENCRYPT_LIVE_PATH, ssl_cert_folder, 'fullchain.pem'] | path_join }};
 | 
					ssl_certificate         {{ [ LETSENCRYPT_LIVE_PATH | mandatory, ssl_cert_folder | mandatory, 'fullchain.pem'] | path_join }};
 | 
				
			||||||
ssl_certificate_key     {{ [ LETSENCRYPT_LIVE_PATH, ssl_cert_folder, 'privkey.pem'  ] | path_join }};
 | 
					ssl_certificate_key     {{ [ LETSENCRYPT_LIVE_PATH | mandatory, ssl_cert_folder | mandatory, 'privkey.pem'  ] | path_join }};
 | 
				
			||||||
ssl_trusted_certificate {{ [ LETSENCRYPT_LIVE_PATH, ssl_cert_folder, 'chain.pem'    ] | path_join }};
 | 
					ssl_trusted_certificate {{ [ LETSENCRYPT_LIVE_PATH | mandatory, ssl_cert_folder | mandatory, 'chain.pem'    ] | path_join }};
 | 
				
			||||||
@@ -33,3 +33,5 @@
 | 
				
			|||||||
    ('already present' not in (collabora_preview.stdout | default('')))
 | 
					    ('already present' not in (collabora_preview.stdout | default('')))
 | 
				
			||||||
  async: "{{ ASYNC_TIME if ASYNC_ENABLED | bool else omit }}"
 | 
					  async: "{{ ASYNC_TIME if ASYNC_ENABLED | bool else omit }}"
 | 
				
			||||||
  poll:  "{{ ASYNC_POLL if ASYNC_ENABLED | bool else omit }}"
 | 
					  poll:  "{{ ASYNC_POLL if ASYNC_ENABLED | bool else omit }}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					- include_tasks: utils/run_once.yml
 | 
				
			||||||
@@ -1,5 +1,3 @@
 | 
				
			|||||||
- block:
 | 
					- name: "Load core functions for '{{ application_id }}'"
 | 
				
			||||||
  - name: "Load core functions for '{{ application_id }}'"
 | 
					 | 
				
			||||||
  include_tasks: 01_core.yml
 | 
					  include_tasks: 01_core.yml
 | 
				
			||||||
  - include_tasks: utils/run_once.yml
 | 
					 | 
				
			||||||
  when: run_once_web_svc_collabora is not defined
 | 
					  when: run_once_web_svc_collabora is not defined
 | 
				
			||||||
@@ -31,6 +31,8 @@ class TestCspConfigurationConsistency(unittest.TestCase):
 | 
				
			|||||||
        "worker-src",
 | 
					        "worker-src",
 | 
				
			||||||
        "manifest-src",
 | 
					        "manifest-src",
 | 
				
			||||||
        "media-src",
 | 
					        "media-src",
 | 
				
			||||||
 | 
					        "style-src-attr",
 | 
				
			||||||
 | 
					        "script-src-attr",
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    SUPPORTED_FLAGS = {"unsafe-eval", "unsafe-inline"}
 | 
					    SUPPORTED_FLAGS = {"unsafe-eval", "unsafe-inline"}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user