ewolf
That seems a long time for your drives to resync. I think it takes about 2 or 3 hours for 2x SATA 300Gb drives to resync with about 150Gb of space used on a Pentium 2GHz box, so you better check if something is wrong ie drives not running at optimal speed.
I don't know if this is possible , but you could look at the commands to grow hard disk size and see if you can do the reverse ie reduce the size
From
http://wiki.contribs.org/index.php?title=SME_Server:Documentation:Technical_Manual:Booklet#Hard_Drives_.E2.80.93_RaidUpgrading the Hard Drive Size
* CAUTION MAKE A FULL BACKUP!
* Ensure you have e-smith-base-4.16.0-33 or newer installed. [or Update to at least 7.1.3]
1. Shut down and install larger drive in system.
2. Boot up and manage raid to add new (larger) drive to system.
3. Wait for raid to fully sync.
4. Repeat steps 1-3 until all drives in system are upgraded to larger capacity.
5. Ensure all drives have been replace with larger drives and array is in sync and redundant!
6. Issue the following commands:
1. mdadm --grow /dev/md2 --size=max
2. pvresize /dev/md2
3. lvresize -l +$(vgdisplay -c main | cut -d: -f16) main/root [-l (lower case L)]
4. ext2online -C0 /dev/main/root [is -C0 (zero)]
Notes :
* All of this can be done while the server is up and running with the exception of #1.
* These instructions should work for any raid level you have as long as you have >= 2 drives
* If you have disabled lvm
1. you don't need the pvresize or lvresize command
2. the final line becomes ext2online -C0 /dev/md2 (or whatever / is mounted to)