From 2ec4f39d7ef09150fd48ebd357ee58b0e97db965 Mon Sep 17 00:00:00 2001 From: Matthew Carter Date: Mon, 26 Jan 2026 14:17:43 -0800 Subject: [PATCH] feat: remove opportunistic unmounting of local ssd --- configuration/init.toml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/configuration/init.toml b/configuration/init.toml index e226eec..465a92d 100644 --- a/configuration/init.toml +++ b/configuration/init.toml @@ -26,15 +26,6 @@ [Module.Command] Cmd = ["/usr/sbin/networksetup", "-setnetworkserviceenabled", "Ethernet", "off"] -# Unmount Local SSD -[[Module]] - Name = "UnmountLocalSSD" - PriorityGroup = 1 # First group - RunPerBoot = true # Run every boot - FatalOnError = false # Best effort, don't fatal on error - [Module.Command] - Cmd = ["/bin/zsh", "-c", "diskutil list internal physical | egrep -o '^/dev/disk\\d+' | xargs diskutil eject || true"] - ### Group 2 ### ## The only task in the first group is to make sure the network is up. Some of the subsequent actions require ## a connection to IMDS and will fail if this check doesn't pass.