summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Stoelp <johannes.stoelp@gmail.com>2025-04-04 02:13:20 +0200
committerJohannes Stoelp <johannes.stoelp@gmail.com>2025-04-04 02:13:20 +0200
commit23f6b16a3cf30cc6b87ed62496e180be5f125177 (patch)
tree21db6e55a8f7ae32545b1d53da197b1e893dd55e
parentcab1e45ad16ea17a88bad431d720bb12b1050f30 (diff)
downloadansible-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.yml7
1 files changed, 3 insertions, 4 deletions
diff --git a/setup.yml b/setup.yml
index bca609b..6d3e03e 100644
--- a/setup.yml
+++ b/setup.yml
@@ -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"