├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── pull_request_template.md ├── .gitignore ├── CONTRIBUTING.md ├── DCO.md ├── LICENSE ├── README.md └── veeam.harden.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-hardened-repository/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-hardened-repository/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-hardened-repository/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-hardened-repository/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DCO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-hardened-repository/HEAD/DCO.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-hardened-repository/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-hardened-repository/HEAD/README.md -------------------------------------------------------------------------------- /veeam.harden.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-hardened-repository/HEAD/veeam.harden.sh --------------------------------------------------------------------------------