diff options
author | Elizabeth Hunt <me@liz.coffee> | 2025-06-15 22:01:00 -0700 |
---|---|---|
committer | Elizabeth Hunt <me@liz.coffee> | 2025-06-15 22:01:22 -0700 |
commit | 2357f73ac24e8cc97a054334469bb1be5e2ec60c (patch) | |
tree | cc43e36cc19d7229a24575dced58232a256db083 | |
parent | 037c85fdd373322a84afd8acd9c652deeab37520 (diff) | |
download | ci-2357f73ac24e8cc97a054334469bb1be5e2ec60c.tar.gz ci-2357f73ac24e8cc97a054334469bb1be5e2ec60c.zip |
Mini fixes
-rw-r--r-- | Dockerfile | 1 | ||||
-rwxr-xr-x | worker/scripts/ansible_playbook.ts | 2 |
2 files changed, 1 insertions, 2 deletions
@@ -1,7 +1,6 @@ # -- <laminar_bin> -- FROM debian:stable-slim AS laminar_bin ENV DEBIAN_FRONTEND=noninteractive -RUN useradd --system --home-dir /var/lib/laminar --no-user-group --groups users --uid 100 laminar RUN rm -rf /etc/cron.d/e2scrub_all RUN apt-get update -yqq && apt-get install -yqq --no-install-recommends \ diff --git a/worker/scripts/ansible_playbook.ts b/worker/scripts/ansible_playbook.ts index fe2810b..0879dc5 100755 --- a/worker/scripts/ansible_playbook.ts +++ b/worker/scripts/ansible_playbook.ts @@ -20,7 +20,7 @@ const eitherJob = getRequiredEnvVars([ ]) .mapRight((baseArgs) => ( <AnsiblePlaybookJob> { - type: "ansible_playbook", + type: "ansible_playbook.ts", arguments: baseArgs, } )); |