mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-15 17:14:46 +00:00
9 lines
146 B
Bash
Executable File
9 lines
146 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -e /var/run/configd.pid ]; then
|
|
echo "configd not running!"
|
|
exit 1
|
|
fi
|
|
|
|
exec /usr/local/opnsense/service/configd_ctl.py "${@}"
|