dhcpcd: accept optional service/conf in the runit services.
This commit is contained in:
parent
d43feb1170
commit
abd0e4a8b1
3 changed files with 5 additions and 3 deletions
|
@ -1,2 +1,3 @@
|
|||
#!/bin/sh
|
||||
exec dhcpcd -B eth0
|
||||
[ -r conf ] && . ./conf
|
||||
exec dhcpcd -B eth0 $OPTS
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
#!/bin/sh
|
||||
exec dhcpcd -M -B
|
||||
[ -r conf ] && . ./conf
|
||||
exec dhcpcd -B ${OPTS:=-M}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'dhcpcd'
|
||||
pkgname=dhcpcd
|
||||
version=6.7.1
|
||||
revision=2
|
||||
revision=3
|
||||
lib32disabled=yes
|
||||
build_options="systemd"
|
||||
build_style=configure
|
||||
|
|
Loading…
Reference in a new issue