Fix/runner quadlet (#6)
Johto Infrastructure Pipeline / Run Ansible Lint (push) Successful in 1m54s
Johto Infrastructure Pipeline / Deploy to Production (push) Has been cancelled

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:
2026-07-08 14:10:27 -07:00
co-authored by Jordan Del Pilar
parent 010e4d3c49
commit 3d5bda78ac
2 changed files with 1 additions and 4 deletions
@@ -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 }}