11 lines
140 B
Bash
Executable file
11 lines
140 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
. /lib/arci/arci.mod.sh
|
|
|
|
case "$1" in
|
|
start)
|
|
log 'Starting dhcpcd daemon'
|
|
dhcpcd -bq
|
|
elog 'done'
|
|
;;
|
|
esac
|