11 lines
311 B
Bash
11 lines
311 B
Bash
chmod +x act_runner
|
|
./act_runner --version
|
|
|
|
cp ./act_runner.service /etc/systemd/system/act_runner.service
|
|
cp ./act_runner /usr/local/bin/act_runner
|
|
mkdir /etc/act_runner
|
|
cp ./config.yaml /etc/act_runner/config.yaml
|
|
|
|
systemctl daemon reload
|
|
systemctl enable act_runner.service
|
|
systemctl start act_runner.service |