mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-07 01:32:26 +01:00
14 lines
225 B
Plaintext
Executable File
14 lines
225 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
|
|
name="pppd"
|
|
command="/usr/sbin/${SVCNAME}"
|
|
command_args="nodetach ${PPPD_OPTS}"
|
|
pidfile="/var/run/$SVCNAME.pid"
|
|
command_background=true
|
|
|
|
start_pre() {
|
|
checkpath --directory /var/run/ppp
|
|
modprobe pptp
|
|
}
|
|
|