├── .gitignore ├── LICENSE ├── Makefile ├── README.md └── src ├── Makefile ├── Makefile.inc ├── bootstrap ├── Makefile ├── opnsense-bootstrap.8 └── opnsense-bootstrap.sh.in ├── code ├── Makefile ├── opnsense-code.8 └── opnsense-code.sh ├── fetch ├── Makefile ├── opnsense-fetch.8 └── opnsense-fetch.sh ├── patch ├── Makefile ├── opnsense-patch.8 └── opnsense-patch.sh ├── revert ├── Makefile ├── opnsense-revert.8 └── opnsense-revert.sh ├── sign ├── Makefile ├── opnsense-sign.8 └── opnsense-sign.sh ├── update ├── Makefile ├── opnsense-update.8 └── opnsense-update.sh.in └── verify ├── Makefile ├── config.c ├── config.h ├── opnsense-verify.8 └── pkg.c /.gitignore: -------------------------------------------------------------------------------- 1 | .depend* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/README.md -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/Makefile.inc -------------------------------------------------------------------------------- /src/bootstrap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/bootstrap/Makefile -------------------------------------------------------------------------------- /src/bootstrap/opnsense-bootstrap.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/bootstrap/opnsense-bootstrap.8 -------------------------------------------------------------------------------- /src/bootstrap/opnsense-bootstrap.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/bootstrap/opnsense-bootstrap.sh.in -------------------------------------------------------------------------------- /src/code/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/code/Makefile -------------------------------------------------------------------------------- /src/code/opnsense-code.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/code/opnsense-code.8 -------------------------------------------------------------------------------- /src/code/opnsense-code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/code/opnsense-code.sh -------------------------------------------------------------------------------- /src/fetch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/fetch/Makefile -------------------------------------------------------------------------------- /src/fetch/opnsense-fetch.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/fetch/opnsense-fetch.8 -------------------------------------------------------------------------------- /src/fetch/opnsense-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/fetch/opnsense-fetch.sh -------------------------------------------------------------------------------- /src/patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/patch/Makefile -------------------------------------------------------------------------------- /src/patch/opnsense-patch.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/patch/opnsense-patch.8 -------------------------------------------------------------------------------- /src/patch/opnsense-patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/patch/opnsense-patch.sh -------------------------------------------------------------------------------- /src/revert/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/revert/Makefile -------------------------------------------------------------------------------- /src/revert/opnsense-revert.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/revert/opnsense-revert.8 -------------------------------------------------------------------------------- /src/revert/opnsense-revert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/revert/opnsense-revert.sh -------------------------------------------------------------------------------- /src/sign/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/sign/Makefile -------------------------------------------------------------------------------- /src/sign/opnsense-sign.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/sign/opnsense-sign.8 -------------------------------------------------------------------------------- /src/sign/opnsense-sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/sign/opnsense-sign.sh -------------------------------------------------------------------------------- /src/update/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/update/Makefile -------------------------------------------------------------------------------- /src/update/opnsense-update.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/update/opnsense-update.8 -------------------------------------------------------------------------------- /src/update/opnsense-update.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/update/opnsense-update.sh.in -------------------------------------------------------------------------------- /src/verify/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/verify/Makefile -------------------------------------------------------------------------------- /src/verify/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/verify/config.c -------------------------------------------------------------------------------- /src/verify/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/verify/config.h -------------------------------------------------------------------------------- /src/verify/opnsense-verify.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/verify/opnsense-verify.8 -------------------------------------------------------------------------------- /src/verify/pkg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/update/HEAD/src/verify/pkg.c --------------------------------------------------------------------------------