From 9eb098a8ded62b46ffa1e3b50fbca440b6ef888a Mon Sep 17 00:00:00 2001 From: Matheson Steplock Date: Mon, 2 Oct 2023 02:51:43 +0000 Subject: [PATCH] fix NFS --- homeassistant-supervised/DEBIAN/postinst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/homeassistant-supervised/DEBIAN/postinst b/homeassistant-supervised/DEBIAN/postinst index b123c2e..465d20a 100755 --- a/homeassistant-supervised/DEBIAN/postinst +++ b/homeassistant-supervised/DEBIAN/postinst @@ -45,10 +45,9 @@ if [ "$(systemctl is-active systemd-journal-gatewayd.socket)" = 'inactive' ]; th systemctl enable systemd-journal-gatewayd.socket> /dev/null 2>&1; systemctl start systemd-journal-gatewayd.socket> /dev/null 2>&1; fi -# Enable and start nfs-utils.service for nfs mounts +# Start nfs-utils.service for nfs mounts if [ "$(systemctl is-active nfs-utils.service)" = 'inactive' ]; then - info "Enable nfs-utils.service" - systemctl enable nfs-utils.service> /dev/null 2>&1; + info "Start nfs-utils.service" systemctl start nfs-utils.service> /dev/null fi