add new script: mount_raid_array

This commit is contained in:
stupidcomputer 2024-09-02 17:20:13 -05:00
parent b47225c26b
commit 7f0dde3687
1 changed files with 20 additions and 0 deletions

20
builds/utils/mount_raid_array Executable file
View File

@ -0,0 +1,20 @@
#!/bin/sh
hostname=$(hostname)
if [ "$hostname" != "copernicus" ]; then
echo "this script should be run only on copernicus"
exit 1
fi
if [ "$1" = "umount" ]; then
sudo umount ~/mount
sudo mdadm --stop /dev/md0
echo "done"
exit 0
fi
sudo mdadm --assemble --run /dev/md0 /dev/sdb2 /dev/sdc2
mkdir -p ~/mount
sudo mount /dev/md0 ~/mount