Przeglądaj źródła

Update unprivileged-homeassistant.sh

tteckster 3 lat temu
rodzic
commit
e9a575dcb9
1 zmienionych plików z 5 dodań i 0 usunięć
  1. 5 0
      unpriv/unprivileged-homeassistant.sh

+ 5 - 0
unpriv/unprivileged-homeassistant.sh

@@ -98,6 +98,7 @@ bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/unpr
 
 STORAGE_TYPE=$(pvesm status -storage $(pct config $CTID | grep rootfs | awk -F ":" '{print $2}') | awk 'NR>1 {print $2}')
 if [ "$STORAGE_TYPE" == "zfspool" ]; then
+  wget -qL -O fuse-overlayfs https://github.com/containers/fuse-overlayfs/releases/download/v1.8.2/fuse-overlayfs-x86_64
   warn "Some addons may not work due to ZFS not supporting 'fallocate'."
 fi
 LXC_CONFIG=/etc/pve/lxc/${CTID}.conf
@@ -108,6 +109,10 @@ EOF
 
 echo -en "${GN} Starting LXC Container... "
 pct start $CTID
+if [ "$STORAGE_TYPE" == "zfspool" ]; then
+pct push $CTID fuse-overlayfs /usr/local/bin/fuse-overlayfs -perms 755
+info "${BL}Using fuse-overlayfs.${CL}"
+fi
 echo -e "${CM}${CL} \r"
 
 alias lxc-cmd="lxc-attach -n $CTID --"