mirror of
https://git.busybox.net/busybox
synced 2025-05-10 12:43:48 +02:00
12 lines
162 B
Bash
Executable file
12 lines
162 B
Bash
Executable file
#!/bin/sh
|
|
|
|
#exec >/dev/null
|
|
exec 2>&1
|
|
exec </dev/null
|
|
|
|
echo "* Starting dnsmasq"
|
|
exec \
|
|
env - PATH="$PATH" \
|
|
softlimit \
|
|
setuidgid root \
|
|
dnsmasq -C dnsmasq.conf
|