mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-15 14:52:17 +03:00
16 lines
379 B
Bash
16 lines
379 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
while read line
|
||
|
do
|
||
|
IFS=' ' read -a module <<< "$line"
|
||
|
modprobe "${module[1]}"
|
||
|
done < /etc/modprobe.d/blockusbstorages.conf
|
||
|
|
||
|
echo "" | tee -a /etc/modprobe.d/blockusbstorages.conf
|
||
|
|
||
|
modprobe usb_storage
|
||
|
|
||
|
for usb_dev in /dev/disk/by-id/usb-*; do
|
||
|
dev=$(readlink -f $usb_dev)
|
||
|
grep -q ^$dev /proc/mounts && mount -f $dev
|
||
|
done
|