From ea78f65f45c052d9cec226b56631b1d01fd043ee Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Wed, 15 Feb 2023 11:19:03 +0100 Subject: [PATCH] Update 92-local_mounts.sh --- .templates/92-local_mounts.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.templates/92-local_mounts.sh b/.templates/92-local_mounts.sh index e6e187aa9..6f60fd433 100755 --- a/.templates/92-local_mounts.sh +++ b/.templates/92-local_mounts.sh @@ -40,19 +40,19 @@ if bashio::config.has_value 'localdisks'; then fstype=$(lsblk "$devpath"/"$disk" -no fstype) options="nosuid,relatime,noexec" type="auto" + bashio::log.info "Mounting ${disk} of type ${fstype}" case "$fstype" in exfat | vfat | msdos) - bashio::log.warning "${disk} is ${fstype}. Permissions and ACL don't works and this is an EXPERIMENTAL support" + bashio::log.warning "${fstype} permissions and ACL don't works and this is an EXPERIMENTAL support" options="${options},umask=000" ;; ntfs) - bashio::log.warning "${disk} is ${fstype}. This is an EXPERIMENTAL support" + bashio::log.warning "${fstype} is an EXPERIMENTAL support" options="${options},umask=000" type="ntfs3" ;; *) - bashio::log.info "Mounting ${mdisk} of type ${fstype}" if bashio::config.has_value 'PUID' && bashio::config.has_value 'PGID'; then echo "Using PUID $(bashio::config 'PUID') and PGID $(bashio::config 'PGID')" options="$options,uid=$(bashio::config 'PUID'),gid=$(bashio::config 'PGID')"