Start work: porting cloudflare warp client to sdxpinn

This commit is contained in:
Cameron Thompson
2025-02-06 22:43:23 -05:00
parent 13fe12413e
commit 0eb6b4d502
9 changed files with 118 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,20 @@
#!/bin/sh /etc/rc.common
START=99
STOP=10
USE_PROCD=1
start_service() {
echo "Starting Cloudflare WARP service..."
procd_open_instance
procd_set_param command /bin/warp-svc
procd_set_param stdout 1
procd_set_param stderr 1
procd_close_instance
echo "Cloudflare WARP service started"
}
stop_service() {
# procd will handle stopping all instances automatically
echo "Stopping Cloudflare WARP service"
}