Compare commits
2 Commits
c569ae410d
...
7ef78737d5
Author | SHA1 | Date | |
---|---|---|---|
7ef78737d5 | |||
7f0dde3687 |
20
builds/utils/mount_raid_array
Executable file
20
builds/utils/mount_raid_array
Executable 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
|
Loading…
Reference in New Issue
Block a user