From 1d9e30bb545ea75430d28e4b5d5bc0b5a34424ef Mon Sep 17 00:00:00 2001 From: cschantz Date: Thu, 6 Nov 2025 16:03:06 -0500 Subject: [PATCH] Fix installer execution by using /root instead of /tmp MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Root cause: /tmp is mounted with noexec flag preventing execution. Changed TEMP_DIR from /tmp/acronis-install to /root/acronis-install This allows the installer binary to execute properly. Verified: mount shows /tmp with noexec option Solution: Use /root which allows execution 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- modules/backup/acronis-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/backup/acronis-install.sh b/modules/backup/acronis-install.sh index 1b24ca9..0602918 100755 --- a/modules/backup/acronis-install.sh +++ b/modules/backup/acronis-install.sh @@ -226,8 +226,8 @@ echo "" echo -e "${BOLD}Starting Installation...${NC}" echo "" -# Create temp directory -TEMP_DIR="/tmp/acronis-install-$$" +# Create temp directory (not in /tmp as it may have noexec) +TEMP_DIR="/root/acronis-install-$$" mkdir -p "$TEMP_DIR" cd "$TEMP_DIR" || exit 1