mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-26 20:02:30 +01:00
13 lines
241 B
Bash
13 lines
241 B
Bash
#!/sbin/openrc-run
|
|
|
|
# user-servicable parts go in /etc/conf.d/althttpd
|
|
description="The althttpd web server"
|
|
command=/usr/bin/althttpd
|
|
command_args="${ALTHTTPD_OPTS}"
|
|
command_background=true
|
|
pidfile=/run/althttpd.pid
|
|
|
|
depend() {
|
|
need net
|
|
}
|