feat(packaging): add goreleaser recipe

This commit is contained in:
2023-09-22 22:03:28 -06:00
parent fdaffca43f
commit c2f8be504e
8 changed files with 266 additions and 1 deletions

View File

@ -0,0 +1,6 @@
export REBOUND_ADDRESS=:2222
export REBOUND_HTTP_CUSTOM_DIR=/etc/rebound/custom
export REBOUND_SSH_PUBLIC_HOST=rebound
export REBOUND_SSH_PUBLIC_PORT=2222
export REBOUND_SSH_SOCK_DIR=/var/lib/rebound/socks
export REBOUND_SSH_HOST_KEY=/etc/rebound/host.key

View File

@ -0,0 +1,11 @@
#!/sbin/openrc-run
command="/usr/bin/rebound"
command_args=""
supervisor=supervise-daemon
output_log="/var/log/rebound.log"
error_log="$output_log"
depend() {
need net
}