mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +03:00
11 lines
180 B
Bash
Executable file
11 lines
180 B
Bash
Executable file
#!/sbin/openrc-run
|
|
|
|
command="/usr/bin/clash"
|
|
command_args="-d /etc/clash"
|
|
command_background=true
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
|
|
depend() {
|
|
need net
|
|
use dns logger netmount
|
|
}
|