Compare commits

...

2 Commits

Author SHA1 Message Date
2a828afc89 chore: add 686 arch 2023-02-22 17:05:50 +01:00
c049cf8047 chore: move openwrt init script to emissary-firmware project 2023-02-22 17:05:31 +01:00
2 changed files with 2 additions and 20 deletions

View File

@ -22,6 +22,7 @@ builds:
goarch:
- amd64
- arm64
- "386"
main: ./cmd/server
- id: emissary-agent
env:
@ -43,6 +44,7 @@ builds:
- amd64
- arm64
- arm
- "386"
main: ./cmd/agent
archives:
- id: server

View File

@ -1,20 +0,0 @@
#!/bin/sh /etc/rc.common
USE_PROCD=1
START=50
STOP=50
start_service() {
local config_file="/etc/emissary/agent.yml"
procd_open_instance emissary-agent
procd_set_param command /usr/bin/emissary
procd_append_param command --workdir /usr/share/emissary
procd_append_param command --config "$config_file"
procd_append_param command agent run
procd_set_param respawn ${respawn_threshold:-3600} ${respawn_timeout:-5} ${respawn_retry:-5}
procd_set_param file "$config_file"
procd_set_param stdout 1
procd_set_param stderr 1
procd_set_param pidfile /var/run/emissary-agent.pid
procd_close_instance
}