소스 검색

sync before unmounting

subDesTagesMitExtraKaese 2 달 전
부모
커밋
ae9110dbc9
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      unmount_hdd.sh

+ 1 - 0
unmount_hdd.sh

@@ -6,6 +6,7 @@ source .env
 # Execute unmount command on the server via SSH and capture output
 OUTPUT=$(ssh -i "$SSH_KEY" -p "$SSH_PORT" "$SERVER_USER@$SERVER_IP" << EOF
     # Try to unmount the HDD and handle errors
+    sudo /usr/bin/sync "$MOUNT_POINT"
     sudo /bin/umount "$MOUNT_POINT" $1
     if [ \$? -ne 0 ]; then
         echo "Failed to unmount HDD from $MOUNT_POINT."