[Package Requirement] V2Ray
I recently noticed that mirrors of archlinux are no longer depended by artixlinux. As a person who does not want to install unnecessary packages, i lose a convenient way to install v2ray, v2ray-geoip and v2ray-domain-list-community.
V2Ray is an important package to break through nation-scale firewall, such as the GFW in China. It officially provides SystemD script and is included by archlinux. However, it is pretty easy to migrate V2Ray to other init systems. I can provide an OpenRC script for it:
#!/usr/bin/openrc-run
depend() {
need net
}
command="/usr/lib/v2ray/v2ray"
command_args="-config /etc/v2ray/config.json"
command_user="root:root"
command_background="true"
pidfile="/run/v2ray.pid"
output_log="/var/log/v2ray.log"