mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-13 17:52:37 +02:00
14 lines
220 B
Bash
Executable File
14 lines
220 B
Bash
Executable File
#!/sbin/openrc-run
|
|
|
|
name="pppd"
|
|
command="/usr/sbin/${SVCNAME}"
|
|
command_args="nodetach ${PPPD_OPTS}"
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
command_background=true
|
|
|
|
start_pre() {
|
|
checkpath --directory /run/ppp
|
|
modprobe pptp
|
|
}
|
|
|