Fix/runner quadlet (#6)
This PR fixes an issue with the act_runner container set up. ## Major Changes - Update act_runner_quadlet.j2 template to fix an issue where the runner would restart adguard during the pipeline. This caused the act_runner container to restart as well due to the line "requires=adguard.service" - Updated gitea_quadlet.j2 to disable new user registration. --------- Co-authored-by: Jordan Del Pilar <[email protected]> Reviewed-on: #6
This commit was merged in pull request #6.
This commit is contained in:
@@ -1,8 +1,6 @@
|
||||
# {{ ansible_managed }}
|
||||
[Unit]
|
||||
After=network-online.target
|
||||
After=adguard.service
|
||||
Requires=adguard.service
|
||||
|
||||
StartLimitBurst=10
|
||||
StartLimitIntervalSec=120
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
# {{ ansible_managed }}
|
||||
[Unit]
|
||||
After=network-online.target
|
||||
After=adguard.service
|
||||
Requires=adguard.service
|
||||
|
||||
StartLimitBurst=10
|
||||
StartLimitIntervalSec=120
|
||||
@@ -42,6 +40,7 @@ Volume=/etc/timezone:/etc/timezone:ro
|
||||
Volume=/etc/localtime:/etc/localtime:ro
|
||||
|
||||
Environment=TZ={{ timezone | default('America/Los_Angeles') }}
|
||||
Environment=DISABLE_REGISTRATION=true
|
||||
{% if item.env is defined %}
|
||||
{% for key, value in item.env.items() | sort %}
|
||||
Environment={{ key }}={{ value }}
|
||||
|
||||
Reference in New Issue
Block a user