gitextract_635tykei/ ├── .editorconfig ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug.md │ │ ├── config.yml │ │ └── enhancement.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── main.yml │ ├── scheduled-build.yml │ └── stale.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Changelog.md ├── LICENSE.txt ├── Makefile ├── README.md ├── README_ZH_cn_.md ├── README_zh_tw.md ├── Vagrantfile ├── build-multiarch.sh ├── build.sh ├── image/ │ ├── Dockerfile │ ├── bin/ │ │ ├── install_clean │ │ ├── my_init │ │ └── setuser │ ├── buildconfig │ ├── cleanup.sh │ ├── prepare.sh │ ├── services/ │ │ ├── cron/ │ │ │ ├── cron.runit │ │ │ └── cron.sh │ │ ├── sshd/ │ │ │ ├── 00_regen_ssh_host_keys.sh │ │ │ ├── enable_insecure_key │ │ │ ├── keys/ │ │ │ │ ├── insecure_key │ │ │ │ ├── insecure_key.ppk │ │ │ │ └── insecure_key.pub │ │ │ ├── sshd.runit │ │ │ ├── sshd.sh │ │ │ └── sshd_config │ │ └── syslog-ng/ │ │ ├── logrotate.conf │ │ ├── logrotate_syslogng │ │ ├── smart-multi-line.fsm │ │ ├── syslog-ng.conf │ │ ├── syslog-ng.init │ │ ├── syslog-ng.sh │ │ ├── syslog-ng.shutdown │ │ └── syslog_ng_default │ ├── system_services.sh │ └── utilities.sh ├── install-tools.sh ├── test/ │ ├── runner.sh │ └── test.sh ├── tools/ │ ├── README.md │ ├── baseimage-docker-nsenter │ ├── docker-bash │ └── docker-ssh └── vagrant-libs/ └── bootstrap.sh