├── .github └── workflows │ ├── publish.yml │ └── setup.sh ├── .gitignore ├── README.md ├── clean.sh ├── openwrt ├── firehol │ ├── Makefile │ └── files │ │ ├── 50-qos │ │ ├── firehol │ │ ├── firehol-defaults.conf │ │ ├── firehol.conf.example │ │ ├── fireqos │ │ └── fireqos.conf.example └── iprange │ └── Makefile ├── package.conf ├── redhat ├── docker-setup.sh ├── firehol │ ├── docker-build.sh │ ├── firehol.init │ ├── firehol.service │ ├── firehol.spec │ ├── fireqos.init │ └── fireqos.service ├── iprange │ └── docker-build.sh └── netdata │ └── docker-build.sh ├── setup.sh └── x86_64-static ├── docker-setup.sh ├── iprange └── docker-build.sh └── netdata └── docker-build.sh /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/.github/workflows/setup.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | output/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/README.md -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | sudo rm -rf build output 4 | 5 | exit 0 6 | -------------------------------------------------------------------------------- /openwrt/firehol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/openwrt/firehol/Makefile -------------------------------------------------------------------------------- /openwrt/firehol/files/50-qos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/openwrt/firehol/files/50-qos -------------------------------------------------------------------------------- /openwrt/firehol/files/firehol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/openwrt/firehol/files/firehol -------------------------------------------------------------------------------- /openwrt/firehol/files/firehol-defaults.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/openwrt/firehol/files/firehol-defaults.conf -------------------------------------------------------------------------------- /openwrt/firehol/files/firehol.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/openwrt/firehol/files/firehol.conf.example -------------------------------------------------------------------------------- /openwrt/firehol/files/fireqos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/openwrt/firehol/files/fireqos -------------------------------------------------------------------------------- /openwrt/firehol/files/fireqos.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/openwrt/firehol/files/fireqos.conf.example -------------------------------------------------------------------------------- /openwrt/iprange/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/openwrt/iprange/Makefile -------------------------------------------------------------------------------- /package.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/package.conf -------------------------------------------------------------------------------- /redhat/docker-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/redhat/docker-setup.sh -------------------------------------------------------------------------------- /redhat/firehol/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/redhat/firehol/docker-build.sh -------------------------------------------------------------------------------- /redhat/firehol/firehol.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/redhat/firehol/firehol.init -------------------------------------------------------------------------------- /redhat/firehol/firehol.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/redhat/firehol/firehol.service -------------------------------------------------------------------------------- /redhat/firehol/firehol.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/redhat/firehol/firehol.spec -------------------------------------------------------------------------------- /redhat/firehol/fireqos.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/redhat/firehol/fireqos.init -------------------------------------------------------------------------------- /redhat/firehol/fireqos.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/redhat/firehol/fireqos.service -------------------------------------------------------------------------------- /redhat/iprange/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/redhat/iprange/docker-build.sh -------------------------------------------------------------------------------- /redhat/netdata/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/redhat/netdata/docker-build.sh -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/setup.sh -------------------------------------------------------------------------------- /x86_64-static/docker-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/x86_64-static/docker-setup.sh -------------------------------------------------------------------------------- /x86_64-static/iprange/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/x86_64-static/iprange/docker-build.sh -------------------------------------------------------------------------------- /x86_64-static/netdata/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firehol/packages/HEAD/x86_64-static/netdata/docker-build.sh --------------------------------------------------------------------------------