blob: 19c848b698e4fb1ebef4c48a2ccb32a006a73a94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/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
}
|