├── .gitattributes ├── .github ├── dependabot.yml ├── issue_template.md └── workflows │ ├── bats-action.yml │ ├── build-action.yml │ ├── docs-update-action.yml │ ├── installation-action.yml │ └── shellcheck-action.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── NEWS.md ├── README.md ├── docs ├── CHANGELOG.md ├── images │ ├── logo.svg │ ├── openHABian-config.png │ └── openHABian-install-failed.png ├── openhabian-backup.md ├── openhabian-exim.md ├── openhabian-troubleshooting.md └── openhabian.md ├── functions ├── README.md ├── auth.bash ├── backup.bash ├── config.bash ├── ext-storage.bash ├── find.bash ├── habapp.bash ├── habapp.bats ├── helpers.bash ├── helpers.bats ├── influxdb+grafana.bash ├── influxdb+grafana.bats ├── java-jre.bash ├── java-jre.bats ├── menu.bash ├── nodejs-apps.bash ├── nodejs-apps.bats ├── nut.bash ├── openhab.bash ├── openhabian.bash ├── packages.bash ├── packages.bats ├── system.bash ├── vpn.bash ├── vpn.bats ├── wifi.bash ├── zram.bash └── zram.bats ├── includes ├── 011_evcc ├── 011_openhab-tailscale ├── 90-wireless.rules ├── INA219.py ├── S90force-ipv4 ├── SD │ ├── mirror_SD │ ├── sdrawcopy.service-template │ ├── sdrawcopy.timer │ ├── sdrsync.service-template │ ├── sdrsync.timer │ ├── set-partuuid │ ├── storage.mount-template │ ├── zsync.service │ └── zsync.timer ├── amanda-exclude-list ├── amanda │ ├── amanda-exclude-list │ ├── amanda.conf-template │ ├── amandaBackupDB.service-template │ ├── amandaBackupDB.timer │ ├── amdump.service-template │ └── amdump.timer-template ├── azul_zulu_license.md ├── checkrpi ├── comitup.conf ├── dashboard-imagedata ├── delayed-rules.conf ├── esphome-device-builder.service.template ├── evcc-override.conf ├── find3 │ ├── find3ai.service │ ├── find3server │ └── find3server.service ├── firemotd │ ├── 15firemotd │ ├── firemotd.service │ └── firemotd.timer ├── frontail.service ├── generic │ ├── 100-disable-wifi-mac-randomization.conf │ ├── bash.bashrc │ ├── bash_aliases │ ├── bash_profile │ └── bashrc-root ├── grott.ini ├── grott.service ├── habapp.service ├── homegear-management.service ├── homegear.service ├── multitail.openhab.conf ├── nginx.conf ├── nodered-override.conf ├── nut │ ├── nut.conf │ ├── ups.conf │ ├── upsd.conf │ ├── upsd.users │ └── upsmon.conf ├── openhab-override.conf ├── openhablogo ├── rpi_init ├── smb.conf ├── srv_mount_template ├── srv_readme.txt ├── tailscale.bash ├── update-exim4.conf.conf-template ├── vimrc ├── webserver │ ├── install-complete.html │ └── install-log.html ├── wireguard-client.conf-template ├── wireguard-server.conf-template ├── zigbee2mqtt │ └── zigbee2mqtt.service ├── zram-override.conf ├── zram-sync ├── ztab └── ztab-lm ├── openhabian-setup.sh └── tests ├── Dockerfile.amd64-BATS ├── Dockerfile.amd64-installation ├── Dockerfile.rpi2-installation ├── Dockerfile.rpi4-BATS ├── Dockerfile.rpi5-installation ├── balena.service ├── ci-setup.bash ├── entry.sh ├── runlevel └── test.bash /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/workflows/bats-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/.github/workflows/bats-action.yml -------------------------------------------------------------------------------- /.github/workflows/build-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/.github/workflows/build-action.yml -------------------------------------------------------------------------------- /.github/workflows/docs-update-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/.github/workflows/docs-update-action.yml -------------------------------------------------------------------------------- /.github/workflows/installation-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/.github/workflows/installation-action.yml -------------------------------------------------------------------------------- /.github/workflows/shellcheck-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/.github/workflows/shellcheck-action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/README.md -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/docs/images/logo.svg -------------------------------------------------------------------------------- /docs/images/openHABian-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/docs/images/openHABian-config.png -------------------------------------------------------------------------------- /docs/images/openHABian-install-failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/docs/images/openHABian-install-failed.png -------------------------------------------------------------------------------- /docs/openhabian-backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/docs/openhabian-backup.md -------------------------------------------------------------------------------- /docs/openhabian-exim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/docs/openhabian-exim.md -------------------------------------------------------------------------------- /docs/openhabian-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/docs/openhabian-troubleshooting.md -------------------------------------------------------------------------------- /docs/openhabian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/docs/openhabian.md -------------------------------------------------------------------------------- /functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/README.md -------------------------------------------------------------------------------- /functions/auth.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/auth.bash -------------------------------------------------------------------------------- /functions/backup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/backup.bash -------------------------------------------------------------------------------- /functions/config.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/config.bash -------------------------------------------------------------------------------- /functions/ext-storage.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/ext-storage.bash -------------------------------------------------------------------------------- /functions/find.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/find.bash -------------------------------------------------------------------------------- /functions/habapp.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/habapp.bash -------------------------------------------------------------------------------- /functions/habapp.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/habapp.bats -------------------------------------------------------------------------------- /functions/helpers.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/helpers.bash -------------------------------------------------------------------------------- /functions/helpers.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/helpers.bats -------------------------------------------------------------------------------- /functions/influxdb+grafana.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/influxdb+grafana.bash -------------------------------------------------------------------------------- /functions/influxdb+grafana.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/influxdb+grafana.bats -------------------------------------------------------------------------------- /functions/java-jre.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/java-jre.bash -------------------------------------------------------------------------------- /functions/java-jre.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/java-jre.bats -------------------------------------------------------------------------------- /functions/menu.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/menu.bash -------------------------------------------------------------------------------- /functions/nodejs-apps.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/nodejs-apps.bash -------------------------------------------------------------------------------- /functions/nodejs-apps.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/nodejs-apps.bats -------------------------------------------------------------------------------- /functions/nut.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/nut.bash -------------------------------------------------------------------------------- /functions/openhab.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/openhab.bash -------------------------------------------------------------------------------- /functions/openhabian.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/openhabian.bash -------------------------------------------------------------------------------- /functions/packages.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/packages.bash -------------------------------------------------------------------------------- /functions/packages.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/packages.bats -------------------------------------------------------------------------------- /functions/system.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/system.bash -------------------------------------------------------------------------------- /functions/vpn.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/vpn.bash -------------------------------------------------------------------------------- /functions/vpn.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/vpn.bats -------------------------------------------------------------------------------- /functions/wifi.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/wifi.bash -------------------------------------------------------------------------------- /functions/zram.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/zram.bash -------------------------------------------------------------------------------- /functions/zram.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/functions/zram.bats -------------------------------------------------------------------------------- /includes/011_evcc: -------------------------------------------------------------------------------- 1 | openhab ALL=(ALL) NOPASSWD: /bin/systemctl restart evcc 2 | -------------------------------------------------------------------------------- /includes/011_openhab-tailscale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/011_openhab-tailscale -------------------------------------------------------------------------------- /includes/90-wireless.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/90-wireless.rules -------------------------------------------------------------------------------- /includes/INA219.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/INA219.py -------------------------------------------------------------------------------- /includes/S90force-ipv4: -------------------------------------------------------------------------------- 1 | Acquire::ForceIPv4 "true"; 2 | -------------------------------------------------------------------------------- /includes/SD/mirror_SD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/SD/mirror_SD -------------------------------------------------------------------------------- /includes/SD/sdrawcopy.service-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/SD/sdrawcopy.service-template -------------------------------------------------------------------------------- /includes/SD/sdrawcopy.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/SD/sdrawcopy.timer -------------------------------------------------------------------------------- /includes/SD/sdrsync.service-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/SD/sdrsync.service-template -------------------------------------------------------------------------------- /includes/SD/sdrsync.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/SD/sdrsync.timer -------------------------------------------------------------------------------- /includes/SD/set-partuuid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/SD/set-partuuid -------------------------------------------------------------------------------- /includes/SD/storage.mount-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/SD/storage.mount-template -------------------------------------------------------------------------------- /includes/SD/zsync.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/SD/zsync.service -------------------------------------------------------------------------------- /includes/SD/zsync.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/SD/zsync.timer -------------------------------------------------------------------------------- /includes/amanda-exclude-list: -------------------------------------------------------------------------------- 1 | ./cache 2 | ./tmp 3 | -------------------------------------------------------------------------------- /includes/amanda/amanda-exclude-list: -------------------------------------------------------------------------------- 1 | ./cache 2 | ./tmp 3 | -------------------------------------------------------------------------------- /includes/amanda/amanda.conf-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/amanda/amanda.conf-template -------------------------------------------------------------------------------- /includes/amanda/amandaBackupDB.service-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/amanda/amandaBackupDB.service-template -------------------------------------------------------------------------------- /includes/amanda/amandaBackupDB.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/amanda/amandaBackupDB.timer -------------------------------------------------------------------------------- /includes/amanda/amdump.service-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/amanda/amdump.service-template -------------------------------------------------------------------------------- /includes/amanda/amdump.timer-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/amanda/amdump.timer-template -------------------------------------------------------------------------------- /includes/azul_zulu_license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/azul_zulu_license.md -------------------------------------------------------------------------------- /includes/checkrpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/checkrpi -------------------------------------------------------------------------------- /includes/comitup.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/comitup.conf -------------------------------------------------------------------------------- /includes/dashboard-imagedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/dashboard-imagedata -------------------------------------------------------------------------------- /includes/delayed-rules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/delayed-rules.conf -------------------------------------------------------------------------------- /includes/esphome-device-builder.service.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/esphome-device-builder.service.template -------------------------------------------------------------------------------- /includes/evcc-override.conf: -------------------------------------------------------------------------------- 1 | [Service] 2 | User=%USER 3 | -------------------------------------------------------------------------------- /includes/find3/find3ai.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/find3/find3ai.service -------------------------------------------------------------------------------- /includes/find3/find3server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/find3/find3server -------------------------------------------------------------------------------- /includes/find3/find3server.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/find3/find3server.service -------------------------------------------------------------------------------- /includes/firemotd/15firemotd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/firemotd/15firemotd -------------------------------------------------------------------------------- /includes/firemotd/firemotd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/firemotd/firemotd.service -------------------------------------------------------------------------------- /includes/firemotd/firemotd.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/firemotd/firemotd.timer -------------------------------------------------------------------------------- /includes/frontail.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/frontail.service -------------------------------------------------------------------------------- /includes/generic/100-disable-wifi-mac-randomization.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/generic/100-disable-wifi-mac-randomization.conf -------------------------------------------------------------------------------- /includes/generic/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/generic/bash.bashrc -------------------------------------------------------------------------------- /includes/generic/bash_aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/generic/bash_aliases -------------------------------------------------------------------------------- /includes/generic/bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/generic/bash_profile -------------------------------------------------------------------------------- /includes/generic/bashrc-root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/generic/bashrc-root -------------------------------------------------------------------------------- /includes/grott.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/grott.ini -------------------------------------------------------------------------------- /includes/grott.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/grott.service -------------------------------------------------------------------------------- /includes/habapp.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/habapp.service -------------------------------------------------------------------------------- /includes/homegear-management.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/homegear-management.service -------------------------------------------------------------------------------- /includes/homegear.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/homegear.service -------------------------------------------------------------------------------- /includes/multitail.openhab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/multitail.openhab.conf -------------------------------------------------------------------------------- /includes/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/nginx.conf -------------------------------------------------------------------------------- /includes/nodered-override.conf: -------------------------------------------------------------------------------- 1 | [Unit] 2 | After=openhab.service 3 | -------------------------------------------------------------------------------- /includes/nut/nut.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/nut/nut.conf -------------------------------------------------------------------------------- /includes/nut/ups.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/nut/ups.conf -------------------------------------------------------------------------------- /includes/nut/upsd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/nut/upsd.conf -------------------------------------------------------------------------------- /includes/nut/upsd.users: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/nut/upsd.users -------------------------------------------------------------------------------- /includes/nut/upsmon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/nut/upsmon.conf -------------------------------------------------------------------------------- /includes/openhab-override.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/openhab-override.conf -------------------------------------------------------------------------------- /includes/openhablogo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/openhablogo -------------------------------------------------------------------------------- /includes/rpi_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/rpi_init -------------------------------------------------------------------------------- /includes/smb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/smb.conf -------------------------------------------------------------------------------- /includes/srv_mount_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/srv_mount_template -------------------------------------------------------------------------------- /includes/srv_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/srv_readme.txt -------------------------------------------------------------------------------- /includes/tailscale.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/tailscale.bash -------------------------------------------------------------------------------- /includes/update-exim4.conf.conf-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/update-exim4.conf.conf-template -------------------------------------------------------------------------------- /includes/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/vimrc -------------------------------------------------------------------------------- /includes/webserver/install-complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/webserver/install-complete.html -------------------------------------------------------------------------------- /includes/webserver/install-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/webserver/install-log.html -------------------------------------------------------------------------------- /includes/wireguard-client.conf-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/wireguard-client.conf-template -------------------------------------------------------------------------------- /includes/wireguard-server.conf-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/wireguard-server.conf-template -------------------------------------------------------------------------------- /includes/zigbee2mqtt/zigbee2mqtt.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/zigbee2mqtt/zigbee2mqtt.service -------------------------------------------------------------------------------- /includes/zram-override.conf: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Before=openhab.service 3 | -------------------------------------------------------------------------------- /includes/zram-sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/zram-sync -------------------------------------------------------------------------------- /includes/ztab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/ztab -------------------------------------------------------------------------------- /includes/ztab-lm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/includes/ztab-lm -------------------------------------------------------------------------------- /openhabian-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/openhabian-setup.sh -------------------------------------------------------------------------------- /tests/Dockerfile.amd64-BATS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/tests/Dockerfile.amd64-BATS -------------------------------------------------------------------------------- /tests/Dockerfile.amd64-installation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/tests/Dockerfile.amd64-installation -------------------------------------------------------------------------------- /tests/Dockerfile.rpi2-installation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/tests/Dockerfile.rpi2-installation -------------------------------------------------------------------------------- /tests/Dockerfile.rpi4-BATS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/tests/Dockerfile.rpi4-BATS -------------------------------------------------------------------------------- /tests/Dockerfile.rpi5-installation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/tests/Dockerfile.rpi5-installation -------------------------------------------------------------------------------- /tests/balena.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/tests/balena.service -------------------------------------------------------------------------------- /tests/ci-setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/tests/ci-setup.bash -------------------------------------------------------------------------------- /tests/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/tests/entry.sh -------------------------------------------------------------------------------- /tests/runlevel: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "N 5" 4 | -------------------------------------------------------------------------------- /tests/test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhab/openhabian/HEAD/tests/test.bash --------------------------------------------------------------------------------