Skip to content

Commit

Permalink
Upgrade to 8.6.9 (#4)
Browse files Browse the repository at this point in the history
* Update to 8.0.24 Official (jacobalberty#697)

* Remove value from PKGURL arg

* Remove unneeded hotfixes for beta

* Use permset to ensure /unifi is owned by the user specified in docker run command line
see jacobalberty#525

* Remove unifi data dir for our symlink

* [Beta] Update to 8.0.2 EA

The new 8.x Network version is currently in EA and the beta branch hasn't been updated for a while.

Rebasing to Master branch and updating to Network 8.0.2

* Update README.md

Added beta branch info to readme.

* Update 8.0.6-EA

* Update README.md

* Update README.md

* 8.0.7-ea

* Update README.md

* Change to 8.0.7 Official

* Update README.md

* Update 8.0.24 Official

* Update README.md

---------

Co-authored-by: Jacob Alberty <[email protected]>

* v8.0.26 (jacobalberty#715)

* [TASK] Update controller to v8.0.28 (jacobalberty#720)

* bumping controller to v8.0.28

* its released

* [TASK] Update controller to v8.1.113 (jacobalberty#731)

* Update README.md

Updated from 8.0.28 to 8.1.113
Formatted a tag table a little by adding more spaces.

* Update Dockerfile

Updated the version 8.0.28 to 8.1.113

* Update README.md

Corrected the URL

* If CERT_IS_CHAIN or ca.pem and chain.pem don't exist, then just take the cert file as is. (jacobalberty#753)

* Update README to list latest version only in the "Current Information" table (jacobalberty#750)

so the document remains up-to-date (DRY - Don't Repeat Yourself)

* Bump controller to 8.2.93 (jacobalberty#745)

* updating to 8.1.127

* going to 8.2.93

* doc update

* Bump controller to 8.3.32 (jacobalberty#755)

* updating to 8.3.32

* doc update

* Update to unifi v8.4.59 (jacobalberty#762)

* Update to unifi v8.4.62 (jacobalberty#768)

* Update to unifi v8.5.6 (jacobalberty#773)

* Docker labels should be labels from metadata not tags (jacobalberty#775)

* Bump to unifi 8.6.9 (jacobalberty#778)

* Add info on device discovery (using port 10001). (jacobalberty#772)

Required Ports Reference:
https://help.ui.com/hc/en-us/articles/218506997-Required-Ports-Reference

---------

Co-authored-by: Gamertech <[email protected]>
Co-authored-by: Jacob Alberty <[email protected]>
Co-authored-by: Daniel Carbone <[email protected]>
Co-authored-by: Vest <[email protected]>
Co-authored-by: Kelly Shutt <[email protected]>
Co-authored-by: Rich Brown <[email protected]>
Co-authored-by: waja <[email protected]>
Co-authored-by: Jakub Dobry <[email protected]>
Co-authored-by: Gavin Mogan <[email protected]>
Co-authored-by: Michael H. <[email protected]>
  • Loading branch information
11 people authored Jan 4, 2025
1 parent 453133e commit 6aaa81b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@ jobs:
cache-from: type=gha
cache-to: type=gha,mode=max
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
.idea/
.vscode/
.DS_Store
backup/
6 changes: 5 additions & 1 deletion import_cert
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,14 @@ _EOF
awk 1 "${CERTTEMPFILE}" "${CERTDIR}/${CERTNAME}" >> "${CHAIN}"
elif [[ "${CERTURI}" == *"lencr.org"* ]]; then
awk 1 "${CERTTEMPFILE}" "${CERTDIR}/chain.pem" "${CERTDIR}/${CERTNAME}" >> "${CHAIN}"
elif [[ "$CERT_IS_CHAIN" == "true" ]]; then
cat "${CERTDIR}/${CERTNAME}" >> "${CHAIN}"
elif [[ -f "${CERTDIR}/ca.pem" ]]; then
awk 1 "${CERTDIR}/ca.pem" "${CERTDIR}/chain.pem" "${CERTDIR}/${CERTNAME}" >> "${CHAIN}"
else
elif [[ -f "${CERTDIR}/chain.pem" ]]; then
awk 1 "${CERTDIR}/chain.pem" "${CERTDIR}/${CERTNAME}" >> "${CHAIN}"
else
cat "${CERTDIR}/${CERTNAME}" >> "${CHAIN}"
fi
openssl pkcs12 -export -passout pass:aircontrolenterprise \
-in "${CHAIN}" \
Expand Down

0 comments on commit 6aaa81b

Please sign in to comment.