mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
- use supervise-daemon - swap need net do after net Also removed slash from the links Signed-off-by: Filip Kobierski <fkobi@pm.me>
16 lines
322 B
Plaintext
16 lines
322 B
Plaintext
#!/sbin/openrc-run
|
|
# Copyright 2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
#
|
|
# shellcheck shell=sh
|
|
|
|
supervisor="supervise-daemon"
|
|
command="/usr/bin/snowflake-proxy"
|
|
command_args="${SNOWFLAKE_PROXY_OPTS}"
|
|
command_background=1
|
|
command_user="nobody:nobody"
|
|
|
|
depend() {
|
|
after net
|
|
}
|