├── .gitignore ├── Dockerfile ├── README.md ├── doc └── Extract_deb_files_from_firmware.md ├── docker-compose.yaml ├── files ├── etc │ └── postgresql │ │ └── 9.6 │ │ ├── main │ │ ├── environment │ │ ├── pg_ctl.conf │ │ ├── pg_hba.conf │ │ ├── pg_ident.conf │ │ ├── postgresql.conf │ │ └── start.conf │ │ └── protect │ │ ├── environment │ │ ├── pg_ctl.conf │ │ ├── pg_hba.conf │ │ ├── pg_ident.conf │ │ ├── postgresql.conf │ │ └── start.conf ├── lib │ └── systemd │ │ └── system │ │ ├── dbpermissions.service │ │ └── storage_disk.service ├── sbin │ ├── mdadm │ └── ubnt-tools └── usr │ ├── bin │ └── ustorage │ └── sbin │ ├── smartctl │ └── storage_disk.sh ├── put-deb-files-here ├── README.md └── node12_12.18.1_arm64.deb └── put-version-file-here └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/README.md -------------------------------------------------------------------------------- /doc/Extract_deb_files_from_firmware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/doc/Extract_deb_files_from_firmware.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /files/etc/postgresql/9.6/main/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/files/etc/postgresql/9.6/main/environment -------------------------------------------------------------------------------- /files/etc/postgresql/9.6/main/pg_ctl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/files/etc/postgresql/9.6/main/pg_ctl.conf -------------------------------------------------------------------------------- /files/etc/postgresql/9.6/main/pg_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/files/etc/postgresql/9.6/main/pg_hba.conf -------------------------------------------------------------------------------- /files/etc/postgresql/9.6/main/pg_ident.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/files/etc/postgresql/9.6/main/pg_ident.conf -------------------------------------------------------------------------------- /files/etc/postgresql/9.6/main/postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/files/etc/postgresql/9.6/main/postgresql.conf -------------------------------------------------------------------------------- /files/etc/postgresql/9.6/main/start.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/files/etc/postgresql/9.6/main/start.conf -------------------------------------------------------------------------------- /files/etc/postgresql/9.6/protect/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/files/etc/postgresql/9.6/protect/environment -------------------------------------------------------------------------------- /files/etc/postgresql/9.6/protect/pg_ctl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/files/etc/postgresql/9.6/protect/pg_ctl.conf -------------------------------------------------------------------------------- /files/etc/postgresql/9.6/protect/pg_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/files/etc/postgresql/9.6/protect/pg_hba.conf -------------------------------------------------------------------------------- /files/etc/postgresql/9.6/protect/pg_ident.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/files/etc/postgresql/9.6/protect/pg_ident.conf -------------------------------------------------------------------------------- /files/etc/postgresql/9.6/protect/postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/files/etc/postgresql/9.6/protect/postgresql.conf -------------------------------------------------------------------------------- /files/etc/postgresql/9.6/protect/start.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/files/etc/postgresql/9.6/protect/start.conf -------------------------------------------------------------------------------- /files/lib/systemd/system/dbpermissions.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/files/lib/systemd/system/dbpermissions.service -------------------------------------------------------------------------------- /files/lib/systemd/system/storage_disk.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/files/lib/systemd/system/storage_disk.service -------------------------------------------------------------------------------- /files/sbin/mdadm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/files/sbin/mdadm -------------------------------------------------------------------------------- /files/sbin/ubnt-tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/files/sbin/ubnt-tools -------------------------------------------------------------------------------- /files/usr/bin/ustorage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/files/usr/bin/ustorage -------------------------------------------------------------------------------- /files/usr/sbin/smartctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/files/usr/sbin/smartctl -------------------------------------------------------------------------------- /files/usr/sbin/storage_disk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/files/usr/sbin/storage_disk.sh -------------------------------------------------------------------------------- /put-deb-files-here/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/put-deb-files-here/README.md -------------------------------------------------------------------------------- /put-deb-files-here/node12_12.18.1_arm64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/put-deb-files-here/node12_12.18.1_arm64.deb -------------------------------------------------------------------------------- /put-version-file-here/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdegrootnl/unifi-protect-arm64/HEAD/put-version-file-here/README.md --------------------------------------------------------------------------------