💾 Archived View for 80h.dev › projects › gemserv › files › init-scripts › gemserv.openrc.gemini captured on 2022-04-29 at 12:33:38. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2022-03-01)

-=-=-=-=-=-=-

01 #!/sbin/openrc-run

02 # Copyright 1999-2020 Gentoo Authors

03 # Distributed under the terms of the GNU General Public License v2

04

05 description="Gemini server"

06 pidfile="/var/run/gemserv.pid"

07 command="/usr/bin/gemserv"

08 command_args="${GEMSERV_CONFIG:-/etc/gemserv/config.toml} > ${GEMSERV_LOGFILE:-/dev/null}"

09 command_user="${GEMSERV_USER:-gemini}"

10 command_background="true"

11

12 depend() {

13 need net

14 use dns

15 }