From 6276d92ffb43ce366ff09ae70ddd230d504dccb9 Mon Sep 17 00:00:00 2001 From: bol-van Date: Sun, 25 Aug 2024 17:50:50 +0300 Subject: [PATCH] rm bad file --- init.d/sysv/custom | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100755 init.d/sysv/custom diff --git a/init.d/sysv/custom b/init.d/sysv/custom deleted file mode 100755 index 666d2d4..0000000 --- a/init.d/sysv/custom +++ /dev/null @@ -1,34 +0,0 @@ -# this script contain your special code to launch daemons and configure firewall -# use helpers from "functions" file -# in case of upgrade keep this file only, do not modify others - -zapret_custom_daemons() -{ - # $1 - 1 - run, 0 - stop - - # PLACEHOLDER - echo !!! NEED ATTENTION !!! - echo Start daemon\(s\) - echo Study how other sections work - - do_daemon $1 1 /bin/sleep 20 -} -zapret_custom_firewall() -{ - # $1 - 1 - run, 0 - stop - - # PLACEHOLDER - echo !!! NEED ATTENTION !!! - echo Configure iptables for required actions - echo Study how other sections work -} - -zapret_custom_firewall_nft() -{ - # stop logic is not required - - # PLACEHOLDER - echo !!! NEED ATTENTION !!! - echo Configure nftables for required actions - echo Study how other sections work -}