Skip to content

Commit

Permalink
0.4.3 - nmcli fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mattlongman committed Jun 21, 2022
1 parent 3963be6 commit 85bbd99
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion hassio-access-point/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,16 @@

### Notes:
- Error: "wlan0: Could not connect to kernel driver" - https://raspberrypi.stackexchange.com/a/88297
- **If anyone has any knowledge relating to the underlying modules, or just wants to assist with testing this addon, please get in touch, submit PRs, etc. I don't currently use this or have the capability to test it**
- **If anyone has any knowledge relating to the underlying modules, or just wants to assist with testing this addon, please get in touch, submit PRs, etc.**

## [0.4.3] - 2022-06-21

### Fixed
- [Issue](https://github.com/mattlongman/Hassio-Access-Point/issues/31) from @adosikas: `nmcli: command not found`. Added `apk add networkmanager-cli` to Dockerfile. Found this via [this PR](https://github.com/hassio-addons/addon-ssh/pull/415).

## [0.4.2] - 2022-06-14

### Added
- [PR](https://github.com/mattlongman/Hassio-Access-Point/pull/23) from @esotericnonsense (thanks!): Added a new config addon option: dnsmasq_config_override to allow additions/overrides to the dnsmasq config file, for example in order to add static DHCP leases with the dhcp-host= option. This option operates similarly to hostapd_config_override.

## [0.4.1] - 2021-07-21
Expand Down
2 changes: 1 addition & 1 deletion hassio-access-point/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
ENV LANG C.UTF-8

RUN apk update && \
apk add --no-cache bash jq iw hostapd networkmanager net-tools sudo dnsmasq && \
apk add --no-cache bash jq iw hostapd networkmanager networkmanager-cli net-tools sudo dnsmasq && \
rm -rf /var/cache/apk/*

COPY hostapd.conf /
Expand Down
2 changes: 1 addition & 1 deletion hassio-access-point/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Hass.io Access Point",
"version": "0.4.2",
"version": "0.4.3",
"slug": "hassio-access-point",
"description": "Create a WiFi access point to directly connect devices to Home Assistant",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
Expand Down

0 comments on commit 85bbd99

Please sign in to comment.