gitea act_runner is now runner

Rename all scripts to gitea-runner and remove all act_runner references.

- rename all scripts
- rename systemd service file

Note that the older service needs to be remove and re-installed
the /etc folder is now /etc/gitea-runner instead of /etc/act_runner
This commit is contained in:
2026-05-17 09:41:23 +09:00
parent dfad774412
commit 008f53fd90
6 changed files with 46 additions and 46 deletions
+6 -6
View File
@@ -39,13 +39,13 @@ if [ ! -f "${target_file}" ]; then
echo "[!] There is no gitea target file at ${target_file}. Is gitea installed?";
gitea_exists=0;
fi;
target_file_act_runner="/usr/local/bin/act_runner";
act_runner_exists=1
if [ ! -f "${target_file_act_runner}" ]; then
echo "[!] There is no gitea action runner target file at ${target_file_act_runner}. Is gitea action runner installed?";
act_runner_exists=0
target_file_gitea_runner="/usr/local/bin/gitea-runner";
gitea_runner_exists=1
if [ ! -f "${target_file_gitea_runner}" ]; then
echo "[!] There is no gitea runner target file at ${target_file_gitea_runner}. Is gitea runner installed?";
gitea_runner_exists=0
fi;
export arch target_file gitea_exists act_runner_exists;
export arch target_file gitea_exists gitea_runner_exists;
# __END__