diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2025-04-04 02:13:20 +0200 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2025-04-04 02:13:20 +0200 |
commit | 23f6b16a3cf30cc6b87ed62496e180be5f125177 (patch) | |
tree | 21db6e55a8f7ae32545b1d53da197b1e893dd55e | |
parent | cab1e45ad16ea17a88bad431d720bb12b1050f30 (diff) | |
download | ansible-ship-23f6b16a3cf30cc6b87ed62496e180be5f125177.tar.gz ansible-ship-23f6b16a3cf30cc6b87ed62496e180be5f125177.zip |
setup: fix access to ttyUSB0 from rootless container
* keep-groups: allows container processes to use supplementary groups
* device idempotency issue fixed with [1]
[1] https://github.com/containers/ansible-podman-collections/pull/611
-rw-r--r-- | setup.yml | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -109,12 +109,11 @@ containers.podman.podman_container: name: homeassistant image: ghcr.io/home-assistant/home-assistant:stable - #privileged: true network: host + # Keep groups, eg dialout for ttyUSB0. + group_add: keep-groups volumes: - "{{ data }}/home-assistant/config:/config" - "/etc/localtime:/etc/localtime:ro" device: - # Podman somehow stores the device file all lower-case. - # Writing it as /dev/ttyUSB0 is treated as a change. - - "/dev/ttyusb0:/dev/ttyusb0" + - "/dev/ttyUSB0:/dev/ttyUSB0" |