mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 18:58:08 -07:00
Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
15 lines
344 B
Plaintext
15 lines
344 B
Plaintext
#!/sbin/openrc-run
|
|
# Copyright 2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
name="microsocks daemon"
|
|
description="Multithreaded, small, efficient SOCKS5 server"
|
|
pidfile="/run/${RC_SVCNAME}.pid"
|
|
command=/usr/bin/microsocks
|
|
command_args="${microsocks_args}"
|
|
command_background=1
|
|
|
|
depend() {
|
|
need net
|
|
}
|