Delete owrt directory

The scripts moved to the openwrt branch https://github.com/Waujito/youtubeUnblock/tree/openwrt
This commit is contained in:
Vadim Vetrov 2024-09-21 21:16:19 +03:00
parent 43d0118767
commit 0fe45ec33f
No known key found for this signature in database
GPG Key ID: E8A308689D7A73A5
2 changed files with 0 additions and 27 deletions

View File

@ -1,5 +0,0 @@
#!/usr/sbin/nft -f
# This file install nftables rules for openwrt
add rule inet fw4 mangle_forward tcp dport 443 ct original packets < 20 counter queue num 537 bypass
insert rule inet fw4 output mark and 0x8000 == 0x8000 counter accept

View File

@ -1,22 +0,0 @@
#!/bin/sh /etc/rc.common
USE_PROCD=1
START=50
STOP=50
# Openwrt procd script: https://openwrt.org/docs/guide-developer/procd-init-script-example
# The program should be put into /usr/bin/
# This file should be put into /etc/init.d/
start_service() {
procd_open_instance
procd_set_param command /usr/bin/youtubeUnblock
procd_set_param nice -20
procd_set_param stdout 1
procd_set_param stderr 1
procd_close_instance
}