diff options
author | Andreas Loibl <andreas@andreas-loibl.de> | 2012-05-18 02:27:23 +0200 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2012-05-18 02:27:23 +0200 |
commit | d05255480af23d2c14c49494954ab84a642c3b8f (patch) | |
tree | 9f74402d08a74ef431bd69eea14fcaf83833d2d2 /backend/modules/partitions | |
parent | 1aec2811155749a024f5f676d4346334e437c5a3 (diff) | |
download | acritoxinstaller-d05255480af23d2c14c49494954ab84a642c3b8f.zip acritoxinstaller-d05255480af23d2c14c49494954ab84a642c3b8f.tar.gz |
remove enable_persistent script, mdadm raid support
Diffstat (limited to 'backend/modules/partitions')
-rw-r--r-- | backend/modules/partitions | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/modules/partitions b/backend/modules/partitions index a64306a..87fa80b 100644 --- a/backend/modules/partitions +++ b/backend/modules/partitions @@ -19,7 +19,7 @@ function strip_live_media() function list_all_disks() { ( - awk -vli="$(awk '{if($2=="sd") print $1;}' /proc/devices)" 'BEGIN{m=split(li,list," ")}{for(i=1;i<=m;i++) if($1==list[i]&&$2%16==0) print "/dev/"$4;}' /proc/partitions + awk -vli="$(awk '{if($2=="sd"||$2=="md") print $1;}' /proc/devices)" 'BEGIN{m=split(li,list," ")}{for(i=1;i<=m;i++) if(($1==list[i]&&$2%16==0)||($1==list[i]&&$2==126)) print "/dev/"$4;}' /proc/partitions ) | strip_live_media } @@ -48,7 +48,7 @@ function list_all_partitions() { ( awk -vli="$(awk '{if($2=="sd") print $1;}' /proc/devices)" 'BEGIN{m=split(li,list," ")}{for(i=1;i<=m;i++) if($1==list[i]&&$2%16!=0) print "/dev/"$4;}' /proc/partitions - awk -vli="$(awk '{if($2=="md") print $1;}' /proc/devices)" 'BEGIN{m=split(li,list," ")}{for(i=1;i<=m;i++) if($1==list[i]) print "/dev/"$4;}' /proc/partitions + awk -vli="$(awk '{if($2=="md") print $1;}' /proc/devices)" 'BEGIN{m=split(li,list," ")}{for(i=1;i<=m;i++) if($1==list[i]||$1==list[i]+250) print "/dev/"$4;}' /proc/partitions ) | strip_live_media } |