12345678910111213141516171819202122 |
-
-
- START=65
-
- USE_PROCD=1
-
- EXTRA_COMMANDS="status"
- EXTRA_HELP=" status Print the status of the service"
-
- start_service() {
- procd_open_instance
-
-
- procd_set_param command /usr/bin/wifidog -s -f
- procd_set_param respawn
- procd_set_param file /etc/wifidog.conf
- procd_close_instance
- }
-
- status() {
- /usr/bin/wdctl status
- }
|