From afeda12902f7b883f3ac25c46412529b9c2a8dd6 Mon Sep 17 00:00:00 2001 From: Garret Polderman <73959394+dailyenergy@users.noreply.github.com> Date: Wed, 23 Feb 2022 20:26:37 +0100 Subject: [PATCH] Small addition to the usb stick mounts I already had a zigbee controller stick at dev/ttyACM0. And was searching for an eternity to figure out, that I had Zwave stick in dev/ttyACM1 to add as an mountpoint in lxc config file --- ct/zwavejs2mqtt_container.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/ct/zwavejs2mqtt_container.sh b/ct/zwavejs2mqtt_container.sh index 2e908b54..c944d824 100644 --- a/ct/zwavejs2mqtt_container.sh +++ b/ct/zwavejs2mqtt_container.sh @@ -154,6 +154,7 @@ lxc.cgroup2.devices.allow: c 189:* rwm lxc.mount.entry: /dev/serial/by-id dev/serial/by-id none bind,optional,create=dir lxc.mount.entry: /dev/ttyUSB0 dev/ttyUSB0 none bind,optional,create=file lxc.mount.entry: /dev/ttyACM0 dev/ttyACM0 none bind,optional,create=file +lxc.mount.entry: /dev/ttyACM1 dev/ttyACM1 none bind,optional,create=file EOF MOUNT=$(pct mount $CTID | cut -d"'" -f 2)