Package Details: warp-plus-bin 1.2.5-2

Git Clone URL: https://aur.archlinux.org/warp-plus-bin.git (read-only, click to copy)
Package Base: warp-plus-bin
Description: An open-source implementation of Cloudflare's Warp, enhanced with Psiphon integration.
Upstream URL: https://github.com/bepass-org/warp-plus
Keywords: cloudflare psiphon warp
Licenses: MIT
Conflicts: warp-plus
Provides: warp-plus
Submitter: morealaz
Maintainer: morealaz
Last Packager: morealaz
Votes: 5
Popularity: 0.23
First Submitted: 2024-03-18 11:05 (UTC)
Last Updated: 2025-02-03 16:48 (UTC)

Latest Comments

Aryan commented on 2025-04-02 22:28 (UTC) (edited on 2025-04-02 22:30 (UTC) by Aryan)

Hi @morealaz, thanks for maintaining this project. one problem I have with this project is when I turn on my computer, the service fails for the first or second time, and that's when I do 'systemctl restart' the service. to fix this problem, I add some options to the service file:

[Unit]
Description=Warp-Plus Service
After=network-online.target
Wants=network-online.target
StartLimitIntervalSec=1000
StartLimitBurst=5

[Service]
WorkingDirectory=/etc/warp-plus
ExecStart=/usr/bin/warp-plus -c /etc/warp-plus/config.json
ExecStop=/bin/kill -HUP ${MAINPID}
Restart=on-failure
RestartSec=5s

[Install]
WantedBy=multi-user.target

this way when the service fails, it restarts after 5 secs and if again, it fails for 5 times, it won't restart the service for ever and its limit is 5. so, when service fails for 5 times in a row, it stops for 1000 seconds and tries that again. please edit the service file if you thinks its helpful. it may be others that have this problem. thanks.