ilot/forgejo-runner: downgrade to 3.5.1
Some checks failed
/ lint (pull_request) Successful in 29s
/ deploy-aarch64 (pull_request) Has been skipped
/ build-aarch64 (pull_request) Failing after 1m11s
/ deploy-x86_64 (pull_request) Successful in 26s
/ build-x86_64 (pull_request) Successful in 1m11s

This commit is contained in:
Antoine Martin 2025-02-18 11:09:37 -05:00
parent 713da6ef66
commit 9014d2d544
Signed by: ayakael
GPG key ID: D62A472A4AA7D541
2 changed files with 18 additions and 6 deletions

View file

@ -0,0 +1,14 @@
#!/bin/sh
addgroup -S forgejo-runner 2>/dev/null
adduser -S -D -H -h /var/lib/forgejo-runner -s /sbin/nologin -G forgejo-runner -g forgejo-runner forgejo-runner 2>/dev/null
cat >&2 <<EOF
* In order to setup the runner, create a config file
* in /etc/forgejo-runner/config.yaml (either from .example.yaml,
* or generating your own with 'forgejo-runner generate-config'),
* then register it with 'doas -u forgejo-runner forgejo-runner register'
* ran in the /var/lib/forgejo-runner directory.
EOF
exit 0