gitextract_hd2fc315/ ├── .github/ │ └── workflows/ │ └── main.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── app/ │ ├── .flaskenv │ ├── README.md │ ├── app.py │ ├── index.html │ └── requirements.txt ├── bin/ │ └── .gitkeep ├── contribs/ │ ├── knockd.sh │ └── knockssh.sh ├── dockerfiles/ │ ├── Dockerfile.basic │ ├── Dockerfile.bsdshell │ ├── Dockerfile.caddy │ ├── Dockerfile.clawd │ ├── Dockerfile.crush │ ├── Dockerfile.dockinx │ └── Dockerfile.tiny ├── etc/ │ ├── base.conf │ ├── bozohttpd.conf │ ├── clawd.conf │ ├── games.conf │ ├── lhv-tools.conf │ ├── live.conf │ ├── nbakery.conf │ ├── nitrosshd.conf │ ├── rescue.conf │ ├── runbsd.conf │ ├── sshd.conf │ ├── systembsd.conf │ ├── tslog.conf │ └── usershell.conf ├── k8s/ │ ├── Dockerfile │ ├── README.md │ ├── generic-device-plugin.yaml │ └── smolbozo.yaml ├── misc/ │ └── vmbatch.md ├── mkimg.sh ├── mnt/ │ └── .gitkeep ├── scripts/ │ ├── app-run.sh │ ├── fetch.sh │ ├── freshchk.sh │ ├── sh │ └── uname.sh ├── service/ │ ├── base/ │ │ ├── etc/ │ │ │ └── rc │ │ └── postinst/ │ │ └── dostuff.sh │ ├── biosboot/ │ │ ├── README.md │ │ ├── etc/ │ │ │ └── rc │ │ └── options.mk │ ├── bozohttpd/ │ │ ├── etc/ │ │ │ └── rc │ │ └── postinst/ │ │ └── mkhtml.sh │ ├── bsdshell/ │ │ └── sailor.conf │ ├── build/ │ │ ├── etc/ │ │ │ ├── rc │ │ │ └── resolv.conf │ │ ├── options.mk │ │ └── postinst/ │ │ └── prepare.sh │ ├── clawd/ │ │ ├── LOCAL.md │ │ ├── README.md │ │ └── SCHIZOCLAW.md │ ├── common/ │ │ ├── basicrc │ │ ├── choupi │ │ ├── funcs │ │ ├── mount9p │ │ ├── pkgin │ │ ├── qemufwcfg │ │ ├── sailor.vars │ │ ├── shutdown │ │ └── vars │ ├── crush/ │ │ └── README.md │ ├── games/ │ │ ├── README.md │ │ └── etc/ │ │ └── rc │ ├── lhv-tools/ │ │ ├── README.md │ │ ├── etc/ │ │ │ └── rc │ │ ├── options.mk │ │ └── postinst/ │ │ └── postinstall.sh │ ├── mport/ │ │ └── etc/ │ │ └── rc │ ├── nbakery/ │ │ ├── etc/ │ │ │ ├── fstab │ │ │ ├── rc │ │ │ └── smol.ansi │ │ └── options.mk │ ├── nitro/ │ │ └── postinst/ │ │ └── 00-nitro.sh │ ├── nitrosshd/ │ │ ├── NETBSD_ONLY │ │ ├── README.md │ │ ├── options.mk │ │ └── postinst/ │ │ ├── 00-nitro.sh │ │ └── keygen.sh │ ├── pipe/ │ │ ├── etc/ │ │ │ └── rc │ │ ├── options.mk │ │ └── sailor.conf │ ├── rescue/ │ │ ├── etc/ │ │ │ └── rc │ │ └── options.mk │ ├── runbsd/ │ │ ├── etc/ │ │ │ ├── banner.ans │ │ │ ├── fstab │ │ │ ├── rc │ │ │ ├── rc.conf │ │ │ └── sysctl.conf │ │ └── postinst/ │ │ ├── 00-runit.sh │ │ ├── 01-sv.sh │ │ └── 02-tools.sh │ ├── sshd/ │ │ ├── README.md │ │ ├── etc/ │ │ │ └── rc │ │ ├── options.mk │ │ ├── postinst/ │ │ │ └── keygen.sh │ │ └── sailor.conf │ ├── systembsd/ │ │ ├── etc/ │ │ │ ├── banner.ans │ │ │ ├── dinit.d/ │ │ │ │ ├── boot │ │ │ │ ├── getty │ │ │ │ ├── loginready │ │ │ │ ├── motd │ │ │ │ ├── rc.boot │ │ │ │ ├── rc.boot.sh │ │ │ │ ├── rc.dev │ │ │ │ ├── rc.dev.sh │ │ │ │ ├── rc.fs │ │ │ │ ├── rc.fs.sh │ │ │ │ ├── sshd │ │ │ │ ├── syslogd │ │ │ │ └── wscons │ │ │ ├── fstab │ │ │ ├── rc │ │ │ ├── rc.conf │ │ │ ├── rc.local │ │ │ └── sysctl.conf │ │ └── postinst/ │ │ ├── 00-dinit.sh │ │ └── 01-custom.sh │ ├── tiny/ │ │ └── sailor.conf │ ├── tslog/ │ │ └── etc/ │ │ └── rc │ └── usershell/ │ ├── README.md │ ├── etc/ │ │ └── rc │ ├── options.mk │ ├── postinst/ │ │ └── custom.sh │ └── sailor.conf ├── smoler/ │ ├── build.sh │ └── img.sh ├── smoler.sh ├── startnb.sh └── www/ └── index.html