From 2b7cddc7d396600d030848c0fcb712af60563e9f Mon Sep 17 00:00:00 2001 From: Luca Beltrame Date: Sun, 5 Jun 2022 22:42:37 +0200 Subject: [PATCH] Use spaces instead of tabs --- sysadmin/dnscheck.init | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/sysadmin/dnscheck.init b/sysadmin/dnscheck.init index 23325fe..1129e51 100644 --- a/sysadmin/dnscheck.init +++ b/sysadmin/dnscheck.init @@ -12,30 +12,30 @@ STOP=10 USE_PROCD=1 start_service() { - procd_open_instance dnscheck - procd_set_param command /bin/sh "/usr/lib/dnscheck/dnscheck.sh" + procd_open_instance dnscheck + procd_set_param command /bin/sh "/usr/lib/dnscheck/dnscheck.sh" - procd_set_param respawn ${respawn_threshold:-3600} ${respawn_timeout:-5} ${respawn_retry:-5} + procd_set_param respawn ${respawn_threshold:-3600} ${respawn_timeout:-5} ${respawn_retry:-5} - procd_set_param stdout 1 # forward stdout of the command to logd - procd_set_param stderr 1 # same for stderr + procd_set_param stdout 1 # forward stdout of the command to logd + procd_set_param stderr 1 # same for stderr - procd_set_param pidfile /var/run/dnscheck.pid + procd_set_param pidfile /var/run/dnscheck.pid - procd_close_instance + procd_close_instance } stop_service() { - logger -t "dnscheck" "kresd monitoring stopped" + logger -t "dnscheck" "kresd monitoring stopped" } service_triggers() { - procd_add_reload_trigger "dnscheck" + procd_add_reload_trigger "dnscheck" } reload_service() { - stop - start + stop + start }